Skip to content

Commit

Permalink
[core] Fix yarn warning (#421)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari authored Oct 12, 2020
1 parent 3b17175 commit 64f0af1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 26 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"jsonlint": "node scripts/jsonlint.js",
"typescript": "lerna run typescript --parallel",
"build:codesandbox": "yarn build",
"build": "cd packages/x-license && yarn build && cd ../grid && yarn build && cd ../x-grid-data-generator && yarn build",
"build": "cd packages/x-license && yarn build && cd ../grid/x-grid && yarn build && cd ../data-grid && yarn build && cd ../../x-grid-data-generator && yarn build",
"publish": "yarn build && lerna publish",
"fake-publish": "lerna publish --no-git-tag-version --no-push --registry=\"http://localhost:4873/\""
},
Expand Down
3 changes: 2 additions & 1 deletion packages/grid/data-grid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
"precommit": "npm run lint",
"lint": "eslint 'src/**/*.{ts,tsx}' --quiet --fix -c ../../../.eslintrc.js && npm run lint:css",
"lint:css": "stylelint 'src/**/*.{ts,tsx}' ../../../.stylelintrc.js",
"typescript": "tsc -p tsconfig.json"
"typescript": "tsc -p tsconfig.json",
"build": "cd ../ && rollup --config rollup.data-grid.config.js"
},
"dependencies": {
"prop-types": "^15.7.2",
Expand Down
10 changes: 0 additions & 10 deletions packages/grid/jest.config.js

This file was deleted.

13 changes: 0 additions & 13 deletions packages/grid/package.json

This file was deleted.

3 changes: 2 additions & 1 deletion packages/grid/x-grid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
"precommit": "npm run lint",
"lint": "../../../node_modules/.bin/tsc --noEmit && eslint 'src/**/*.{ts,tsx}' --quiet --fix -c ../../../.eslintrc.js && npm run lint:css",
"lint:css": "stylelint 'src/**/*.{ts,tsx}' ../../../.stylelintrc.js",
"typescript": "tsc -p tsconfig.json"
"typescript": "tsc -p tsconfig.json",
"build": "cd ../ && rollup --config rollup.x-grid.config.js"
},
"dependencies": {
"@material-ui/x-license": "^4.0.0-alpha.6",
Expand Down

0 comments on commit 64f0af1

Please sign in to comment.