Skip to content

Commit

Permalink
chore(deps): fix peer dependency install
Browse files Browse the repository at this point in the history
  • Loading branch information
gcornut committed Nov 5, 2020
1 parent e44aa6f commit 4eeadd8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@
"lint:js": "eslint packages/*/src/**/*.{js,jsx}",
"lint:ts": "tslint --project tsconfig.json packages/**/*.{ts,tsx}",
"postinstall": "lerna bootstrap",
"prepare": "lerna run --stream prepare",
"preversion": "git symbolic-ref --short -q HEAD | egrep -q '^master$' && echo 'ERROR: You can not release from the master branch.' && exit 1 || true",
"release": "yarn lerna publish --force-publish",
"scaffold": "yo ./packages/yo-generators --with-tests --with-demo",
Expand Down
2 changes: 1 addition & 1 deletion packages/lumx-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
"generate:design-tokens": "yarn node style-dictionary",
"build": "webpack",
"postbuild": "rm -rf ./dist/*.js ./dist/*.js.map",
"postinstall": "install-peers",
"postversion": "version-changelog ../../CHANGELOG.md && git add ../../CHANGELOG.md && git commit --amend",
"prepare": "install-peers",
"prepublishOnly": "yarn build"
},
"sideEffects": false,
Expand Down
2 changes: 1 addition & 1 deletion packages/lumx-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
"scripts": {
"build": "webpack",
"postbuild": "dts-bundle-generator --no-check --external-types=react --external-imports=moment -o dist/lumx.react.d.ts src/index.ts",
"postinstall": "install-peers",
"prepare": "install-peers",
"prepublishOnly": "yarn build",
"test": "jest --config jest/index.js --coverage --notify --passWithNoTests --detectOpenHandles --runInBand",
"storybook": "start-storybook -p 9000"
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -24659,7 +24659,7 @@ style-dictionary@^2.10.0:
resolve-cwd "^2.0.0"
tinycolor2 "^1.4.1"

style-loader@^1.0.0:
style-loader@^0.23.1, style-loader@^1.0.0:
version "1.1.2"
resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.1.2.tgz#1b519c19faf548df6182b93e72ea1a4156022c2f"
integrity sha512-0Mpq1ZHFDCNq1F+6avNBgv+7q8V+mWRuzehxyJT+aKgzyN/yfKTwjYqaYwBgx+11UpQxL21zNQfzzlz+JcGURw==
Expand Down

0 comments on commit 4eeadd8

Please sign in to comment.