Skip to content

Commit

Permalink
avoid invalid path on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
pabra committed Jun 2, 2024
1 parent de5152e commit 51a43e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"dist"
],
"scripts": {
"clean:coverage": "rimraf coverage/*",
"clean:build": "rimraf dist/*",
"clean:build:cjs": "rimraf dist/cjs/*",
"clean:coverage": "rimraf --glob coverage/*",
"clean:build": "rimraf --glob dist/*",
"clean:build:cjs": "rimraf --glob dist/cjs/*",
"format": "prettier --write \"{src,__tests__}/**/*.{js,ts,jsx,tsx,json,html,css,scss,yml,yaml}\"",
"format:check": "prettier --check \"{src,__tests__}/**/*.{js,ts,jsx,tsx,json,html,css,scss,yml,yaml}\"",
"lint": "eslint \"{src,__tests__}/**/*.{js,ts,jsx,tsx}\"",
Expand Down

0 comments on commit 51a43e9

Please sign in to comment.