Skip to content

Commit 0502922

Browse files
authored
Merge pull request #4822 from alanorth/update-rimraf
package.json: update rimraf
2 parents 46fd60d + f3aa5d5 commit 0502922

File tree

2 files changed

+86
-31
lines changed

2 files changed

+86
-31
lines changed

package-lock.json

Lines changed: 82 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"build:stats": "ng build --stats-json",
1717
"build:prod": "cross-env NODE_ENV=production npm run build:ssr",
1818
"build:ssr": "ng build --configuration production && ng run dspace-angular:server:production",
19-
"build:lint": "rimraf 'lint/dist/**/*.js' 'lint/dist/**/*.js.map' && tsc -b lint/tsconfig.json",
19+
"build:lint": "rimraf --glob 'lint/dist/**/*.js' 'lint/dist/**/*.js.map' && tsc -b lint/tsconfig.json",
2020
"test": "ng test --source-map=true --watch=false --configuration test",
2121
"test:watch": "ng test --source-map=true --watch=true --configuration test",
2222
"test:headless": "ng test --source-map=true --watch=false --configuration test --browsers=ChromeHeadless --code-coverage",
@@ -31,8 +31,8 @@
3131
"clean:coverage": "rimraf coverage",
3232
"clean:dist": "rimraf dist",
3333
"clean:doc": "rimraf doc",
34-
"clean:log": "rimraf *.log*",
35-
"clean:json": "rimraf *.records.json",
34+
"clean:log": "rimraf --glob *.log*",
35+
"clean:json": "rimraf --glob *.records.json",
3636
"clean:node": "rimraf node_modules",
3737
"clean:cli": "rimraf .angular/cache",
3838
"clean:prod": "npm run clean:dist && npm run clean:log && npm run clean:doc && npm run clean:coverage && npm run clean:json",
@@ -222,7 +222,7 @@
222222
"postcss-import": "^14.0.0",
223223
"postcss-loader": "^4.0.3",
224224
"postcss-preset-env": "^7.4.2",
225-
"rimraf": "^3.0.2",
225+
"rimraf": "^6.1.0",
226226
"sass": "~1.93.3",
227227
"sass-loader": "^12.6.0",
228228
"sass-resources-loader": "^2.2.5",

0 commit comments

Comments
 (0)