Skip to content

Commit

Permalink
fix: removed unneeded copy from postbuild script
Browse files Browse the repository at this point in the history
The JSON schemas for claims and notifications have been removed. No need to copy them during build anymore.
  • Loading branch information
tegefaulkes committed Dec 8, 2022
1 parent 9321f6c commit c68a01d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"scripts": {
"prepare": "tsc -p ./tsconfig.build.json",
"build": "shx rm -rf ./dist && tsc -p ./tsconfig.build.json",
"postbuild": "shx cp -fR src/proto dist && shx cp -f src/notifications/*.json dist/notifications/ && shx cp -f src/claims/*.json dist/claims/ && shx cp -f src/status/*.json dist/status/",
"postbuild": "shx cp -fR src/proto dist && shx cp -f src/status/*.json dist/status/",
"postversion": "npm install --package-lock-only --ignore-scripts --silent",
"ts-node": "ts-node",
"ts-node-inspect": "node --require ts-node/register --inspect",
Expand Down

0 comments on commit c68a01d

Please sign in to comment.