Skip to content

Commit

Permalink
use rimraf path
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas742 committed Jul 4, 2024
1 parent e3908de commit c0f6550
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,20 @@
"private": true,
"license": "Apache-2.0",
"scripts": {
"rimraf": "./node_modules/rimraf/dist/esm/bin.mjs",
"start": "yarn setup && yarn create-cypress-commands-docs && npm-run-all -p start:watcher start:storybook",
"start:watcher": "lerna run watch:css",
"start:storybook": "storybook dev -p 6006",
"setup": "lerna run build:i18n && lerna run build:css && lerna run build:css-bundle && rimraf node_modules/@types/mocha",
"setup": "lerna run build:i18n && lerna run build:css && lerna run build:css-bundle && yarn rimraf node_modules/@types/mocha",
"build": "yarn setup && tsc --build tsconfig.build.json && lerna run build:client && lerna run build:wrapper && lerna run build:ssr",
"build:storybook": "lerna run build:i18n && yarn create-cypress-commands-docs && storybook build -o .out",
"build:storybook-sitemap": "node ./scripts/create-storybook-sitemap.js --directory .out",
"test:prepare": "rimraf temp && lerna run build",
"test:prepare": "yarn rimraf temp && lerna run build",
"test:cypress": "cypress run --component --browser chrome",
"test:cypress:open": "CYPRESS_COVERAGE=false cypress open --component --browser chrome",
"test": "yarn test:prepare && yarn test:cypress",
"clean": "tsc --build --clean && tsc --build tsconfig.build.json --clean && rimraf temp .out && lerna run clean",
"clean:remove-modules": "yarn clean && rimraf node_modules",
"clean": "tsc --build --clean && tsc --build tsconfig.build.json --clean && yarn rimraf temp .out && lerna run clean",
"clean:remove-modules": "yarn clean && yarn rimraf node_modules",
"prettier:all": "prettier --write --config ./prettier.config.cjs \"packages/**/*.{js,jsx,ts,tsx,mdx,json,md}\"",
"lint": "eslint packages",
"lerna:version-dryrun": "lerna version --conventional-graduate --no-git-tag-version --no-push",
Expand Down

0 comments on commit c0f6550

Please sign in to comment.