Skip to content

Commit

Permalink
build: replaced rm -fr by rimraf
Browse files Browse the repository at this point in the history
  • Loading branch information
pozil committed Nov 6, 2023
1 parent 45e9369 commit e0fecdf
Show file tree
Hide file tree
Showing 2 changed files with 102 additions and 29 deletions.
126 changes: 99 additions & 27 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3"
"prettier": "^3.0.3",
"rimraf": "^5.0.5"
},
"homepage": "https://github.com/trailheadapps/lwc-recipes-oss",
"keywords": [
Expand All @@ -39,7 +40,7 @@
"repository": "trailheadapps/lwc-recipes-oss",
"scripts": {
"build": "lwr build",
"clean": "rm -rf __lwr_cache__ && rm -rf site",
"clean": "rimraf __lwr_cache__ && rimraf site",
"dev": "lwr dev",
"lint": "eslint **/src/**/*.js",
"prettier": "prettier --write \"**/*.{css,html,js,mjs,json,md,yaml,yml}\"",
Expand Down

0 comments on commit e0fecdf

Please sign in to comment.