1
0
Fork 0
mirror of synced 2024-07-02 21:10:43 +12:00

Merge branch 'master' into limit-js-execution-per-request

This commit is contained in:
Sam Rose 2023-12-19 14:16:50 +00:00 committed by GitHub
commit 3265c480c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View file

@ -9,5 +9,5 @@
],
"ext": "js,ts,json",
"ignore": ["src/**/*.spec.ts", "src/**/*.spec.js", "../*/dist/**/*"],
"exec": "yarn build && node --enable-source-maps ./dist/index.js"
"exec": "yarn build && node ./dist/index.js"
}

View file

@ -18,7 +18,7 @@
"test": "bash scripts/test.sh",
"test:memory": "jest --maxWorkers=2 --logHeapUsage --forceExit",
"test:watch": "jest --watch",
"run:docker": "node --enable-source-maps dist/index.js",
"run:docker": "node dist/index.js",
"run:docker:cluster": "pm2-runtime start pm2.config.js",
"dev:stack:up": "node scripts/dev/manage.js up",
"dev:stack:down": "node scripts/dev/manage.js down",

View file

@ -9,5 +9,5 @@
],
"ext": "js,ts,json",
"ignore": ["src/**/*.spec.ts", "src/**/*.spec.js", "../*/dist/**/*"],
"exec": "yarn build && node --enable-source-maps dist/index.js"
"exec": "yarn build && node dist/index.js"
}

View file

@ -17,7 +17,7 @@
"postbuild": "copyfiles -f ../../yarn.lock ./dist/",
"check:types": "tsc -p tsconfig.json --noEmit --paths null",
"build:dev": "yarn prebuild && tsc --build --watch --preserveWatchOutput",
"run:docker": "node --enable-source-maps dist/index.js",
"run:docker": "node dist/index.js",
"debug": "yarn build && node --expose-gc --inspect=9223 dist/index.js",
"run:docker:cluster": "pm2-runtime start pm2.config.js",
"dev:stack:init": "node ./scripts/dev/manage.js init",