Skip to content

Commit

Permalink
fix: Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
finom committed Jan 18, 2020
1 parent eeab95c commit 8137f25
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
"deploy-to-git": "shx rm -rf bundle && deploy-to-git",
"upgrade": "ncu -u && npm install",
"reinstall": "rm -rf package-lock.json node_modules/ && npm i",
"patch": "lerna version patch --yes && npm run npm-deploy",
"minor": "lerna version minor && npm run npm-deploy",
"patch": "lerna run npm-compile && lerna version patch --yes && npm run npm-deploy",
"minor": "lerna run npm-compile && lerna version minor && npm run npm-deploy",
"install-all": "npm install && lerna exec --concurrency 1 -- npm install",
"npm-deploy": "lerna run npm-compile && lerna publish --yes --contents npm"
"npm-deploy": "lerna publish --yes --contents npm"
},
"repository": {
"type": "git",
Expand Down
1 change: 0 additions & 1 deletion packages/router/src/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ class Router {

constructor(type) {
// singletone pattern for history and hash router
/* istanbul ignore if */
if (type in Router) {
return Router[type];
}
Expand Down

0 comments on commit 8137f25

Please sign in to comment.