Skip to content

Commit b0a06d1

Browse files
authored
fix filter paramater in package.json (#10614)
1 parent 3c33d87 commit b0a06d1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
"build": "rollup -c && npm run emitDeclarations",
4646
"dev": "karma start ./karma.conf.cjs --auto-watch --no-single-run --browsers chrome --grep",
4747
"dev:ff": "karma start ./karma.conf.cjs --auto-watch --no-single-run --browsers firefox --grep",
48-
"docs": "pnpm run build && pnpm --filter './docs/**' build",
49-
"docs:dev": "pnpm run build && pnpm --filter './docs/**' dev",
48+
"docs": "pnpm run build && pnpm --filter \"./docs/**\" build",
49+
"docs:dev": "pnpm run build && pnpm --filter \"./docs/**\" dev",
5050
"lint-js": "eslint \"src/**/*.{js,ts}\" \"test/**/*.js\" \"docs/**/*.js\"",
5151
"lint-md": "eslint \"**/*.md\"",
5252
"lint-types": "eslint \"types/**/*.ts\" && pnpm run build && node types/tests/autogen.js && tsc -p types/tests/",
@@ -55,7 +55,7 @@
5555
"test": "pnpm lint && pnpm test-ci",
5656
"test-ci": "concurrently \"pnpm:test-ci-*\"",
5757
"test-ci-karma": "cross-env NODE_ENV=test karma start ./karma.conf.cjs --auto-watch --single-run --coverage --grep",
58-
"test-ci-integration": "pnpm --filter './test/integration/**' test"
58+
"test-ci-integration": "pnpm --filter \"./test/integration/**\" test"
5959
},
6060
"devDependencies": {
6161
"@kurkle/color": "^0.2.1",

0 commit comments

Comments
 (0)