clean dist/src on components builds

This commit is contained in:
Vyacheslav Matyukhin 2022-09-04 16:26:53 +04:00
parent 462f1c9649
commit cebd8118b0
No known key found for this signature in database
GPG Key ID: 3D2A774C5489F96C

View File

@ -66,7 +66,7 @@
}, },
"scripts": { "scripts": {
"start": "cross-env REACT_APP_FAST_REFRESH=false && start-storybook -p 6006 -s public", "start": "cross-env REACT_APP_FAST_REFRESH=false && start-storybook -p 6006 -s public",
"build:cjs": "tsc -b", "build:cjs": "rm -rf dist/src && tsc -b",
"build:css": "postcss ./src/styles/main.css -o ./dist/main.css", "build:css": "postcss ./src/styles/main.css -o ./dist/main.css",
"build:storybook": "build-storybook -s public", "build:storybook": "build-storybook -s public",
"build": "yarn run build:cjs && yarn run build:css && yarn run build:storybook", "build": "yarn run build:cjs && yarn run build:css && yarn run build:storybook",
@ -74,7 +74,7 @@
"all": "yarn bundle && yarn build", "all": "yarn bundle && yarn build",
"lint": "prettier --check .", "lint": "prettier --check .",
"format": "prettier --write .", "format": "prettier --write .",
"prepack": "yarn bundle && tsc -b" "prepack": "yarn run build:cjs && yarn run bundle"
}, },
"eslintConfig": { "eslintConfig": {
"extends": [ "extends": [