[x] I’ve searched for any related issues and avoided creating a duplicate issue.
What happened
Applying the build process scripts detailed in the documentation cause build errors when run on Windows when running npm run watch.
What I expected to happen
Build process to complete successfully with no errors shown. Error appears to be npm having difficulty finding the placeholder for each script key within package.json.
doesn't work : "build": "build:css && npm run build:autoprefix"works : "build": "npm run build:css && npm run build:autoprefix"
Bug report
What happened
Applying the build process scripts detailed in the documentation cause build errors when run on Windows when running
npm run watch
.What I expected to happen
Build process to complete successfully with no errors shown. Error appears to be npm having difficulty finding the placeholder for each script key within
package.json
.doesn't work :
"build": "build:css && npm run build:autoprefix"
works :"build": "npm run build:css && npm run build:autoprefix"
Reproducing
https://designsystem.gov.au/get-started/development-environment/#scripts
n/a
Windows 10
Steps to reproduce:
scripts
section inpackage.json
npm run watch
Attachments