Skip to content

Commit

Permalink
chore(deps): upgrade to latest stable
Browse files Browse the repository at this point in the history
- rollup v3 not upgraded - need to investigate potential issues
- add `@types/semver` for an internal dependency
- add eslint ignore for broken rule
  • Loading branch information
idoros committed Oct 12, 2022
1 parent c847d42 commit 2698026
Show file tree
Hide file tree
Showing 7 changed files with 265 additions and 264 deletions.
3 changes: 2 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@
"@typescript-eslint/prefer-regexp-exec": "off",
"@typescript-eslint/restrict-plus-operands": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/unbound-method": "off"
"@typescript-eslint/unbound-method": "off",
"@typescript-eslint/no-misused-promises": "off" // ToDo: remove once eslint fix issue
}
}
]
Expand Down
502 changes: 250 additions & 252 deletions package-lock.json

Large diffs are not rendered by default.

15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"devDependencies": {
"@file-services/memory": "^7.0.1",
"@file-services/node": "^7.0.1",
"@rollup/plugin-html": "^0.2.4",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-html": "^1.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@types/balanced-match": "^1.0.2",
"@types/chai": "^4.3.3",
"@types/chai-subset": "^1.3.3",
Expand All @@ -46,6 +46,7 @@
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/rimraf": "^3.0.2",
"@types/semver": "^7.3.12",
"@types/validate-npm-package-name": "^4.0.0",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.39.0",
Expand All @@ -54,11 +55,11 @@
"chai": "^4.3.6",
"chai-subset": "^1.6.0",
"create-listening-server": "^1.0.0",
"eslint": "^8.24.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"express": "^4.18.1",
"express": "^4.18.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jsdom": "^20.0.1",
Expand All @@ -67,7 +68,7 @@
"mocha-play": "^3.1.0",
"node-eval": "^2.0.0",
"npm-run-all": "^4.1.5",
"playwright-chromium": "^1.26.1",
"playwright-chromium": "^1.27.1",
"postcss": "^8.4.17",
"promise-assist": "^1.3.0",
"raw-loader": "^4.0.2",
Expand All @@ -76,7 +77,7 @@
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"source-map": "^0.7.4",
"source-map-loader": "^4.0.0",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.1",
"ts-expect": "^1.3.0",
"typescript": "~4.8.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"lodash.clonedeepwith": "^4.5.0",
"postcss": "^8.4.17",
"postcss-js": "^4.0.0",
"postcss-nested": "^5.0.6",
"postcss-nested": "^6.0.0",
"postcss-safe-parser": "^6.0.0",
"postcss-value-parser": "^4.2.0"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/e2e-test-kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
},
"dependencies": {
"@stylable/runtime": "^5.2.1",
"express": "^4.18.1",
"express": "^4.18.2",
"node-eval": "^2.0.0",
"playwright-core": "^1.26.1",
"playwright-core": "^1.27.1",
"rimraf": "^3.0.2"
},
"files": [
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-stylable/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"dependencies": {
"@stylable/core": "^5.2.1",
"@typescript-eslint/experimental-utils": "^5.39.0"
"@typescript-eslint/experimental-utils": "^5.40.0"
},
"keywords": [
"eslint",
Expand Down
1 change: 1 addition & 0 deletions pleb.config.mjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export default {
// pinnedPackages: [{ name: 'name', reason: 'reason' }],
pinnedPackages: [{ name: 'rollup', reason: 'WIP to support v3' }],
};

0 comments on commit 2698026

Please sign in to comment.