summaryrefslogtreecommitdiff
path: root/package.json.scripts
diff options
context:
space:
mode:
Diffstat (limited to 'package.json.scripts')
-rw-r--r--package.json.scripts22
1 files changed, 13 insertions, 9 deletions
diff --git a/package.json.scripts b/package.json.scripts
index 6c52d48..dc57768 100644
--- a/package.json.scripts
+++ b/package.json.scripts
@@ -1,9 +1,13 @@
-"scripts": {
- "build": "tsc -p tsconfig.json && npm run copy:all",
- "start": "npm run start:prod",
- "start:debug": "supervisor ./dist/app.js",
- "start:prod": "node dist/app.js",
- "copy:assets": "cpx './src/assets/**/**/*' './dist/assets'",
- "copy:cache": "cpx './src/Cache/*' './dist/Cache'",
- "copy:all": "concurrently \"npm:copy:assets\" \"npm:copy:cache\""
- }, \ No newline at end of file
+ "scripts": {
+ "build": "tsc -p tsconfig.json && npm run copy:all",
+ "start": "npm run start:prod",
+ "start:debug": "supervisor ./dist/app.js",
+ "start:prod": "node dist/app.js",
+ "copy:assets": "cpx './src/assets/**/**/*' './dist/assets'",
+ "copy:cache": "cpx './src/Cache/*' './dist/Cache'",
+ "copy:all": "concurrently \"npm:copy:assets\" \"npm:copy:cache\""
+ },
+
+ "copy:assets": "cp -r 'src/assets/' 'dist/'",
+ "copy:ws": "cp -r 'src/ws/' 'dist/'",
+ "copy": "concurrently \"npm:copy:assets\" \"npm:copy:ws\"", \ No newline at end of file