Skip to content

Commit 3fd6a2f

Browse files
authored
fix: fixes package.json for windows setups (#5509)
1 parent 036c832 commit 3fd6a2f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"test:cov": "yarn db:resetup && yarn db:migration:run && jest --config ./test/jest-with-coverage.config.js --logHeapUsage",
2020
"test:cov-ci": "yarn db:migration:run && jest --config ./test/jest-with-coverage.config.js --runInBand --logHeapUsage",
2121
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
22-
"db:resetup": "psql -c 'DROP DATABASE IF EXISTS bloom_prisma WITH (FORCE);' && psql -c 'CREATE DATABASE bloom_prisma;' && psql -d bloom_prisma -c 'CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";'",
22+
"db:resetup": "psql -c \"DROP DATABASE IF EXISTS bloom_prisma WITH (FORCE);\" && psql -c \"CREATE DATABASE bloom_prisma;\" && psql -d bloom_prisma -c \"CREATE EXTENSION IF NOT EXISTS \\\"uuid-ossp\\\";\"",
2323
"db:migration:run": "yarn prisma migrate deploy",
2424
"db:seed:production": "npx prisma db seed -- --environment production",
2525
"db:seed:staging": "npx prisma db seed -- --environment staging --jurisdictionName Bloomington",

sites/partners/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"registry": "https://registry.npmjs.org"
1212
},
1313
"scripts": {
14-
"dev": "NODE_OPTIONS='--inspect=9231' next -p ${NEXTJS_PORT:-3001}",
14+
"dev": "NODE_OPTIONS=\"--inspect=9231\" next -p ${NEXTJS_PORT:-3001}",
1515
"build": "next build",
1616
"test": "concurrently \"yarn dev\" \"cypress open\"",
1717
"test:unit": "jest -w 1",

sites/public/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"registry": "https://registry.npmjs.org"
1212
},
1313
"scripts": {
14-
"dev": "NODE_OPTIONS='--inspect=9230' next -p ${NEXTJS_PORT:-3000}",
14+
"dev": "NODE_OPTIONS=\"--inspect=9230\" next -p ${NEXTJS_PORT:-3000}",
1515
"build": "next build",
1616
"test": "concurrently \"yarn dev\" \"cypress open\"",
1717
"test:headless": "concurrently \"yarn dev\" \"cypress run\"",

0 commit comments

Comments
 (0)