We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When running compile with generate: false, the stats object returned is a quite different to normal
generate: false
e.g. generate: false
Stats { startTime: 73029841.411771, stack: [], timings: [ { label: 'parse', start: 73029841.442941, end: 73029845.902759, children: [] }, { label: 'stylesheet', start: 73029845.913745, end: 73029846.028204, children: [] }, { label: 'validate', start: 73029846.034336, end: 73029849.531215, children: [] } ], currentChildren: [ { label: 'parse', start: 73029841.442941, end: 73029845.902759, children: [] }, { label: 'stylesheet', start: 73029845.913745, end: 73029846.028204, children: [] }, { label: 'validate', start: 73029846.034336, end: 73029849.531215, children: [] } ], onwarn: [Function: defaultOnwarn], warnings: [], currentTiming: undefined }
and generate: "dom"
generate: "dom"
{ timings: { total: 18.931489005684853, parse: { total: 4.1629389971494675 }, stylesheet: { total: 0.11548098921775818 }, validate: { total: 3.2378130108118057 }, compile: { total: 11.331197991967201 } }, warnings: [], imports: [ { source: './_components/Layout.html', specifiers: [Array] } ], hooks: {} }
The text was updated successfully, but these errors were encountered:
fix #1368
d036931
stats
Merge pull request #1374 from sveltejs/gh-1368
83af7bb
Return consistently-shaped `stats` object
Thanks — fixed in 2.3.0
Sorry, something went wrong.
No branches or pull requests
When running compile with
generate: false
, the stats object returned is a quite different to normale.g.
generate: false
and
generate: "dom"
The text was updated successfully, but these errors were encountered: