Skip to content
This repository has been archived by the owner on Nov 9, 2022. It is now read-only.

Commit

Permalink
deps: Update driver dependencies to latest.
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Nov 12, 2021
1 parent 72c942d commit 9d34ccb
Show file tree
Hide file tree
Showing 16 changed files with 1,413 additions and 1,368 deletions.
2 changes: 2 additions & 0 deletions .config/beemo/eslint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@ export default {
rules: {
// Breaks on Windows but not Linux/macOS
'import/named': 'off',
// Rewrites our type exports
'unicorn/prefer-export-from': 'off',
},
};
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,22 @@
"task:args": "ts-node packages/local/src/bins/extractOptionList.ts"
},
"devDependencies": {
"@types/eslint": "^7.28.1",
"@types/eslint": "^7.28.2",
"@types/fs-extra": "^9.0.13",
"@types/is-glob": "^4.0.2",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.175",
"@types/node": "^16.9.1",
"@types/lodash": "^4.14.176",
"@types/node": "^16.11.7",
"@types/prettier": "^2.4.1",
"@types/react": "^17.0.27",
"@types/react": "^17.0.34",
"@types/rimraf": "^3.0.2",
"@types/semver": "^7.3.8",
"@types/semver": "^7.3.9",
"conventional-changelog-beemo": "^2.1.0",
"lerna": "^4.0.0",
"packemon": "^1.5.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"webpack": "^5.58.1"
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"webpack": "^5.63.0"
},
"resolutions": {
"chalk": "^4.0.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/driver-babel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@
"access": "public"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.8"
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/preset-env": "^7.16.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/driver-eslint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@
"access": "public"
},
"devDependencies": {
"eslint": "^7.32.0"
"eslint": "^8.2.0"
},
"peerDependencies": {
"@beemo/core": "^2.0.0",
"eslint": "^7.0.0 || ^8.0.0"
},
"dependencies": {
"@boost/event": "^2.3.3",
"@types/eslint": "^7.28.1"
"@types/eslint": "^7.28.2"
},
"funding": {
"type": "ko-fi",
Expand Down
2 changes: 1 addition & 1 deletion packages/driver-flow/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"access": "public"
},
"devDependencies": {
"flow-bin": "^0.161.0"
"flow-bin": "^0.164.0"
},
"peerDependencies": {
"@beemo/core": "^2.0.0",
Expand Down
12 changes: 6 additions & 6 deletions packages/driver-flow/src/FlowDriver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,19 @@ export class FlowDriver extends Driver<FlowConfig> {
output.push(`[${key}]`);

switch (key) {
case 'lints':
output.push(...this.formatLintsSection(value as LintsConfig));
break;
case 'options':
output.push(...this.formatOptionsSection(value as OptionsConfig));
break;
default:
if (Array.isArray(value)) {
output.push(...value.map((v) => String(v)));
} else if (value) {
output.push(String(value));
}
break;
case 'lints':
output.push(...this.formatLintsSection(value as LintsConfig));
break;
case 'options':
output.push(...this.formatOptionsSection(value as OptionsConfig));
break;
}

output.push('');
Expand Down
2 changes: 1 addition & 1 deletion packages/driver-flow/src/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable camelcase */

export type LintSetting = 'error' | 'off' | 'warn' | 0 | 1 | 2;

Expand Down
2 changes: 1 addition & 1 deletion packages/driver-jest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"access": "public"
},
"devDependencies": {
"jest": "^27.2.5"
"jest": "^27.3.1"
},
"peerDependencies": {
"@beemo/core": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/driver-mocha/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"access": "public"
},
"devDependencies": {
"mocha": "^9.1.2"
"mocha": "^9.1.3"
},
"peerDependencies": {
"@beemo/core": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/driver-rollup/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"access": "public"
},
"devDependencies": {
"rollup": "^2.58.0"
"rollup": "^2.59.0"
},
"peerDependencies": {
"@beemo/core": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/driver-stylelint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
},
"dependencies": {
"@boost/event": "^2.3.3",
"@types/stylelint": "^13.13.2"
"@types/stylelint": "^13.13.3"
},
"funding": {
"type": "ko-fi",
Expand Down
2 changes: 1 addition & 1 deletion packages/driver-typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"devDependencies": {
"@boost/test-utils": "^2.3.2",
"typescript": "^4.4.3"
"typescript": "^4.4.4"
},
"peerDependencies": {
"@beemo/core": "^2.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/driver-webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
"access": "public"
},
"devDependencies": {
"webpack": "^5.58.1",
"webpack-cli": "^4.9.0"
"webpack": "^5.63.0",
"webpack-cli": "^4.9.1"
},
"peerDependencies": {
"@beemo/core": "^2.0.0",
Expand Down
1 change: 1 addition & 0 deletions packages/local/.eslintrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"rules": {
"no-console": "off",
"no-restricted-exports": "off",
"import/no-extraneous-dependencies": "off"
}
}
2 changes: 1 addition & 1 deletion packages/local/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"@beemo/driver-webpack": "*"
},
"devDependencies": {
"@beemo/dev": "^1.6.3",
"@beemo/dev": "^1.7.1",
"chalk": "^4.1.2",
"execa": "^5.1.1",
"fast-glob": "^3.2.7",
Expand Down
Loading

0 comments on commit 9d34ccb

Please sign in to comment.