Skip to content

Commit

Permalink
fix quotes in package.json to support all platforms
Browse files Browse the repository at this point in the history
fix quotes in package.json to support all platforms
  • Loading branch information
zacuke committed Dec 5, 2024
1 parent c72145d commit 7e0f011
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
"lint": "eslint . --ext .ts,.js",
"style:fix": "prettier --write .",
"style": "prettier --check .",
"verify": "pnpm --stream '/^verify:.+$/'",
"verify": "pnpm --stream \"/^verify:.+$/\"",
"verify:style": "pnpm run style",
"verify:lint": "pnpm lint",
"verify:types": "tsc --build tsconfig.json",
"format": "pnpm lint:fix && pnpm style:fix",
"build": "pnpm --recursive --stream build",
"dev": "NODE_ENV=development pnpm --stream '/^dev:.+$/'",
"dev": "NODE_ENV=development pnpm --stream \"/^dev:.+$/\"",
"dev:tsc": "tsc --build tsconfig.json --watch",
"dev:pkg": "pnpm --recursive --parallel --stream dev",
"test": "LOG_ENABLED=false ./packages/dev-infra/with-test-redis-and-db.sh pnpm --stream -r test",
Expand Down
2 changes: 1 addition & 1 deletion packages/oauth/oauth-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"scripts": {
"build:frontend": "rollup --config rollup.config.js",
"build:backend": "tsc --build --force tsconfig.backend.json",
"build": "pnpm --parallel --stream '/^build:.+$/'",
"build": "pnpm --parallel --stream \"/^build:.+$/\"",
"dev": "rollup --config rollup.config.js --watch"
}
}

0 comments on commit 7e0f011

Please sign in to comment.