A2UI
A2UI copied to clipboard
npm run build breaks in windows OS
❌ [copy-spec] exited with exit code 1. Output:
Fix :
- npm install --save-dev shx
- Change
"copy-spec": {
"command": "mkdir -p src/0.8/schemas && cp ../../specification/0.8/json/*.json src/0.8/schemas",
To
"copy-spec": {
"command": "shx mkdir -p src/0.8/schemas && shx cp ../../specification/0.8/json/*.json src/0.8/schemas",
This shd fix it