Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: changed

Forms: include wp-build watch in regular watch command.
Copy link

Copilot AI Jan 30, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changelog entry should start with a capital letter after the "Forms:" prefix. Change "include" to "Include" to match the conventions used in other changelog entries in this package.

Copilot generated this review using guidance from repository custom instructions.
4 changes: 2 additions & 2 deletions projects/packages/forms/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,20 @@
"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",
"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",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --config=tests/jest.config.js",
"test-coverage": "pnpm run test --coverage",
"typecheck": "tsc --noEmit",
"validate": "pnpm exec validate-es --no-error-on-unmatched-pattern dist/",
"watch": "concurrently 'pnpm:build:blocks --watch' 'pnpm:build:contact-form --watch' 'pnpm:build:dashboard --watch' 'pnpm:module:watch' 'pnpm:build:form-editor --watch'",
"watch": "concurrently 'pnpm:build:blocks --watch' 'pnpm:build:contact-form --watch' 'pnpm:build:dashboard --watch' 'pnpm:module:watch' 'pnpm:build:form-editor --watch' 'pnpm:watch:wp-build'",
"watch:wp-build": "wp-build --watch"
},
"browserslist": [
Expand Down
Loading