Skip to content
Snippets Groups Projects
Commit 4f89f639 authored by David Dorchies's avatar David Dorchies
Browse files

Ajout de rm build à npm run buildspec pour éviter les fichiers js fantômes après renommage

parent eab5147d
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@
},
"scripts": {
"build": "./node_modules/typescript/bin/tsc --p src/tsconfig.app.json",
"buildspec": "./node_modules/typescript/bin/tsc --p spec/tsconfig.spec.json",
"buildspec": "rm -rf build; ./node_modules/typescript/bin/tsc --p spec/tsconfig.spec.json",
"runtestremous": "./node_modules/typescript/bin/tsc --p spec/tsconfig-remous-fenetre.spec.json && node ./build/spec/test-remous-fenetre.js",
"jasmine": "npm run buildspec && ./node_modules/.bin/jasmine",
"karma": "./node_modules/typescript/bin/tsc --p spec/tsconfig.spec.json && ./node_modules/karma/bin/karma start",
......@@ -31,4 +31,4 @@
"viz": "tsviz -recursive src/ jalhyd_class_diagram.png",
"package": "rm -rf build; npm run build; npm pack"
}
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment