-
Notifications
You must be signed in to change notification settings - Fork 853
Forms: add forms DataViews table to wpbuild dashboard #46837
New issue
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| Significance: minor | ||
| Type: added | ||
|
|
||
| Forms: add form DataViews table to wp-build dashboard. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,12 +17,12 @@ | |
| "type": "module", | ||
| "scripts": { | ||
| "build": "pnpm run clean && pnpm run build:blocks && pnpm run build:contact-form && pnpm run build:dashboard && pnpm run build:wp-build && pnpm run build:form-editor && pnpm run module:build", | ||
| "build-production": "NODE_ENV=production BABEL_ENV=production pnpm run build && pnpm run validate", | ||
| "build:blocks": "webpack --config ./tools/webpack.config.blocks.js", | ||
| "build:contact-form": "webpack --config ./tools/webpack.config.contact-form.js", | ||
| "build:dashboard": "webpack --config ./tools/webpack.config.dashboard.js", | ||
| "build:form-editor": "webpack --config ./tools/webpack.config.form-editor.js", | ||
| "build:wp-build": "wp-build", | ||
| "build-production": "NODE_ENV=production BABEL_ENV=production pnpm run build && pnpm run validate", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is odd; I just had the same lint error and fixed it, but the other way around, as if the linter couldn't decide which way around is correct. I simply fixed it with (PR was #46857) Anyway, thanks for fixing it. Let's see if it now stays stable.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The behavior here changed in sort-package-json v3.5.2, and we recently updated from v3.5.0 to v3.6.1 in #46785. The part I can't figure out is how you managed to need 006519e, as the pnpm-lock there shows v3.6.1 should have been used and we have pnpm configured with
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe it fell in some odd space between packages not being updated, and me pushing & opening the PR with old packages still locally installed. Though I would've expected whole PR fail. 🤷
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. And I see you filed #46868 :-)
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A OTOH, regardless of the IDE, when you |
||
| "clean": "rm -rf dist/ build/ .cache/", | ||
| "module:build": "webpack --config ./tools/webpack.config.modules.js", | ||
| "module:watch": "webpack --watch --config ./tools/webpack.config.modules.js", | ||
|
|
||

Uh oh!
There was an error while loading. Please reload this page.