Skip to content

Commit

Permalink
Make build work on macOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
skieffer committed Dec 1, 2024
1 parent c8056fa commit 5f668d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"clean": "rimraf lib app/bootstrap app/jquery app/sprotty app/vs app/*.bundle.js app/*.bundle.js.map elk-models app/elk-models",
"clone:elk-models": "git -C elk-models pull || git clone https://github.com/eclipse/elk-models.git elk-models",
"copy:examples": "mkdir -p lib/examples/content/ && cp -r elk-models/examples/* lib/examples/content/",
"copy:models": "cp --parents `find elk-models/* -type f \\( -iname \\*.json -o -iname \\*.elkt \\)` app/",
"copy:models": "M=$(find elk-models/* -type f \\( -iname \\*.json -o -iname \\*.elkt \\)); cp --parents $M app/ || rsync -R $M app/",
"clone-and-copy": "yarn clone:elk-models && yarn copy:examples && yarn copy:models",
"build": "yarn clean && yarn clone-and-copy && yarn compile && webpack --env.production",
"build:dev": "yarn compile && webpack",
Expand Down

0 comments on commit 5f668d4

Please sign in to comment.