A2UI icon indicating copy to clipboard operation
A2UI copied to clipboard

npm run build breaks in windows OS

Open kumarana opened this issue 1 week ago • 1 comments

❌ [copy-spec] exited with exit code 1. Output:

Fix :

  1. npm install --save-dev shx
  2. 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

kumarana avatar Dec 19 '25 07:12 kumarana