Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[core] Fix yarn warning #421

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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