Merge pull request #1990 from kuba618/AUT-1137

fix: improve paths for windows os
This commit is contained in:
Ali BARIN
2024-08-08 12:08:05 +02:00
committed by GitHub
6 changed files with 15 additions and 11 deletions

View File

@@ -5,8 +5,8 @@
"description": "The open source Zapier alternative. Build workflow automation without spending time and money.",
"type": "module",
"scripts": {
"dev": "nodemon --watch 'src/**/*.js' --exec 'node' src/server.js",
"worker": "nodemon --watch 'src/**/*.js' --exec 'node' src/worker.js",
"dev": "nodemon --exec node src/server.js",
"worker": "nodemon --exec node src/worker.js",
"start": "node src/server.js",
"start:worker": "node src/worker.js",
"pretest": "APP_ENV=test node ./test/setup/prepare-test-env.js",
@@ -104,5 +104,9 @@
},
"publishConfig": {
"access": "public"
},
"nodemonConfig": {
"watch": [ "src/" ],
"ext": "js"
}
}