Skip to content

Commit

Permalink
fix: Treat arguments as literal paths, not globs. So delete directory…
Browse files Browse the repository at this point in the history
… directly.
  • Loading branch information
yanguoyu committed Jun 28, 2023
1 parent e5921bd commit f40903d
Show file tree
Hide file tree
Showing 5 changed files with 85 additions and 339 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check_storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Install Lerna
run: yarn global add lerna

- name: Boostrap
- name: Bootstrap
run: |
yarn
yarn build
Expand Down
2 changes: 1 addition & 1 deletion packages/neuron-ui/.storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ export default {
features: {
storyStoreV7: false,
},
};
}
2 changes: 1 addition & 1 deletion packages/neuron-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"lint": "eslint --fix --ext .tsx,.ts,.js src",
"test": "react-app-rewired test --env=jsdom --watchAll=false",
"build": "cross-env DISABLE_ESLINT_PLUGIN=true GENERATE_SOURCEMAP=false react-app-rewired build",
"clean": "npx rimraf build/*",
"clean": "npx rimraf build",
"precommit": "lint-staged",
"storybook": "storybook dev -p 9009 -s public",
"build-storybook": "storybook build -s public"
Expand Down
2 changes: 1 addition & 1 deletion packages/neuron-wallet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"watch": "tsc -w",
"start:dev": "yarn run build && electron .",
"start:debug": "yarn run build && electron --inspect=5858 .",
"clean": "npx rimraf dist/*",
"clean": "npx rimraf dist",
"test": "jest --runInBand --collect-coverage --forceExit",
"test:watch": "jest --watch",
"lint": "eslint --fix --ext .ts,.js src",
Expand Down
Loading

0 comments on commit f40903d

Please sign in to comment.