Skip to content
This repository has been archived by the owner on Dec 13, 2024. It is now read-only.

fixes package.json and workflow fixes #49

Merged
merged 3 commits into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .github/workflows/check_core_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,6 @@ jobs:
cd core/
npm i -g yarn@latest
yarn install

- name: fix package type error (temp solution)
run: |
cd scripts/
chmod u+rwx nmfix.sh
./nmfix.sh
cd ..

- name: build server
run: |
Expand Down
2 changes: 1 addition & 1 deletion core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"dev": "ts-node-dev --no-notify src/",
"start": "yarn run compile && node lib/",
"jest": "jest --forceExit",
"compile": "shx rm -rf lib/ && tsc"
"compile": "shx rm -rf lib/ && chmod u+rwx ../scripts/nmfix.sh && ../scripts/nmfix.sh && tsc"
},
"standard": {
"env": [
Expand Down
Loading