mirror of
https://github.com/mjl-/mox.git
synced 2024-12-26 16:33:47 +03:00
don't run install scripts when installing js dependencies
This commit is contained in:
parent
594182aae5
commit
b7ba0482ba
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -116,13 +116,13 @@ tswatch:
|
||||||
|
|
||||||
node_modules/.bin/tsc:
|
node_modules/.bin/tsc:
|
||||||
-mkdir -p node_modules/.bin
|
-mkdir -p node_modules/.bin
|
||||||
npm ci
|
npm ci --ignore-scripts
|
||||||
|
|
||||||
install-js: node_modules/.bin/tsc
|
install-js: node_modules/.bin/tsc
|
||||||
|
|
||||||
install-js0:
|
install-js0:
|
||||||
-mkdir -p node_modules/.bin
|
-mkdir -p node_modules/.bin
|
||||||
npm install --save-dev --save-exact typescript@5.1.6
|
npm install --ignore-scripts --save-dev --save-exact typescript@5.1.6
|
||||||
|
|
||||||
webmail/webmail.js: lib.ts webmail/api.ts webmail/lib.ts webmail/webmail.ts
|
webmail/webmail.js: lib.ts webmail/api.ts webmail/lib.ts webmail/webmail.ts
|
||||||
./tsc.sh $@ $^
|
./tsc.sh $@ $^
|
||||||
|
|
Loading…
Reference in a new issue