Skip to content

Commit

Permalink
chore: update deps and add check-package-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
christophehurpeau committed Mar 13, 2021
1 parent cd6a3ce commit eb4e7dc
Show file tree
Hide file tree
Showing 71 changed files with 334 additions and 309 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
- name: Check Dependencies
run: yarn install --immutable

- name: Checks
run: yarn run checks

- name: Prettier
run: yarn run lint:prettier
if: startsWith(matrix.node-version, '14.')
Expand Down
2 changes: 0 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,13 @@
"source.fixAll": true,
"source.organizeImports": false
},

// eslint config
"eslint.workingDirectories": ["."],
"eslint.options": {
"resolvePluginsRelativeTo": ".",
"reportUnusedDisableDirectives": true
},
"eslint.lintTask.enable": true,

// eslint & prettier formatter
"eslint.format.enable": false,
"editor.defaultFormatter": "esbenp.prettier-vscode"
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarn/sdks/eslint/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint",
"version": "7.19.0-pnpify",
"version": "7.22.0-pnpify",
"main": "./lib/api.js",
"type": "commonjs"
}
2 changes: 1 addition & 1 deletion .yarn/sdks/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typescript",
"version": "4.1.3-pnpify",
"version": "4.1.5-pnpify",
"main": "./lib/typescript.js",
"type": "commonjs"
}
2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
defaultSemverRangePrefix: ^

yarnPath: .yarn/releases/yarn-2.4.0.cjs
yarnPath: .yarn/releases/yarn-2.4.1.cjs
13 changes: 9 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"scripts": {
"build": "lerna run --stream build && yarn run build:definitions && yarn run generate:docs",
"build:definitions": "tsc -b tsconfig.build.json",
"checks": "node scripts/check-packages.js",
"generate:api": "typedoc --tsconfig tsconfig.doc.json",
"generate:docs": "rm -Rf docs ; yarn run generate:api ; touch docs/.nojekyll",
"generate:test-coverage": "lerna run --parallel --ignore \"*-example\" generate:test-coverage",
Expand Down Expand Up @@ -47,19 +48,23 @@
"@pob/lerna-light": "3.24.0",
"@pob/root": "3.1.1",
"@types/node": "14.14.34",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.0",
"check-package-dependencies": "0.1.2",
"eslint": "7.22.0",
"eslint-import-resolver-node": "0.3.4",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-unicorn": "25.0.1",
"husky": "4.3.8",
"prettier": "2.2.1",
"typedoc": "0.20.24",
"typescript": "4.1.5"
"typedoc": "0.20.30",
"typescript": "4.2.3"
},
"resolutions": {
"@types/node": "14.14.34"
},
"resolutionsExplained": {
"@types/node": "Avoid problems in typescript with several versions of @types/node"
}
}
8 changes: 4 additions & 4 deletions packages/nightingale-ansi-formatter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@
"@pob/eslint-config-node": "43.1.0",
"@pob/eslint-config-typescript": "43.0.0",
"@types/jest": "26.0.20",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.0",
"babel-jest": "26.6.3",
"babel-preset-latest-node": "5.4.0",
"eslint": "7.22.0",
Expand All @@ -133,10 +133,10 @@
"eslint-plugin-node": "11.1.0",
"eslint-plugin-unicorn": "25.0.1",
"jest": "26.6.3",
"pob-babel": "26.5.0",
"pob-babel": "26.7.0",
"pob-lcov-reporter": "4.0.1",
"rollup": "2.41.2",
"typescript": "4.1.5",
"typescript": "4.2.3",
"xunit-file": "1.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/nightingale-ansi-formatter/src/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
"overrides": [
{
"files": ["**/*.test.ts", "__tests__/**/*.ts"],
"extends": ["@pob/eslint-config-typescript/test"],
"env": {
"jest": true
},
"extends": ["@pob/eslint-config-typescript/test"],
"rules": {
"import/no-extraneous-dependencies": [
"error",
Expand Down
8 changes: 4 additions & 4 deletions packages/nightingale-app-console/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,17 +112,17 @@
"@pob/eslint-config": "43.0.0",
"@pob/eslint-config-node": "43.1.0",
"@pob/eslint-config-typescript": "43.0.0",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.0",
"babel-preset-latest-node": "5.4.0",
"babel-preset-modern-browsers": "15.0.2",
"eslint": "7.22.0",
"eslint-import-resolver-node": "0.3.4",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-unicorn": "25.0.1",
"pob-babel": "26.5.0",
"pob-babel": "26.7.0",
"rollup": "2.41.2",
"typescript": "4.1.5"
"typescript": "4.2.3"
}
}
9 changes: 4 additions & 5 deletions packages/nightingale-app-react-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,17 +94,16 @@
"@pob/eslint-config": "43.0.0",
"@pob/eslint-config-node": "43.1.0",
"@pob/eslint-config-typescript": "43.0.0",
"@types/node": "14.14.34",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.0",
"babel-preset-modern-browsers": "15.0.2",
"eslint": "7.22.0",
"eslint-import-resolver-node": "0.3.4",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-unicorn": "25.0.1",
"pob-babel": "26.5.0",
"pob-babel": "26.7.0",
"rollup": "2.41.2",
"typescript": "4.1.5"
"typescript": "4.2.3"
}
}
8 changes: 4 additions & 4 deletions packages/nightingale-browser-console-formatter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@
"@pob/eslint-config-node": "43.1.0",
"@pob/eslint-config-typescript": "43.0.0",
"@types/jest": "26.0.20",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.0",
"babel-jest": "26.6.3",
"babel-preset-latest-node": "5.4.0",
"babel-preset-modern-browsers": "15.0.2",
Expand All @@ -148,10 +148,10 @@
"eslint-plugin-unicorn": "25.0.1",
"jest": "26.6.3",
"nightingale-levels": "^11.5.2",
"pob-babel": "26.5.0",
"pob-babel": "26.7.0",
"pob-lcov-reporter": "4.0.1",
"rollup": "2.41.2",
"typescript": "4.1.5",
"typescript": "4.2.3",
"xunit-file": "1.0.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
"overrides": [
{
"files": ["**/*.test.ts", "__tests__/**/*.ts"],
"extends": ["@pob/eslint-config-typescript/test"],
"env": {
"jest": true
},
"extends": ["@pob/eslint-config-typescript/test"],
"rules": {
"import/no-extraneous-dependencies": [
"error",
Expand Down
8 changes: 4 additions & 4 deletions packages/nightingale-browser-console/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,16 +91,16 @@
"@pob/eslint-config": "43.0.0",
"@pob/eslint-config-node": "43.1.0",
"@pob/eslint-config-typescript": "43.0.0",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.0",
"babel-preset-modern-browsers": "15.0.2",
"eslint": "7.22.0",
"eslint-import-resolver-node": "0.3.4",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-unicorn": "25.0.1",
"pob-babel": "26.5.0",
"pob-babel": "26.7.0",
"rollup": "2.41.2",
"typescript": "4.1.5"
"typescript": "4.2.3"
}
}
8 changes: 4 additions & 4 deletions packages/nightingale-console-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,16 +97,16 @@
"@pob/eslint-config-typescript": "43.0.0",
"@pob/eslint-config-typescript-node": "43.0.0",
"@rollup/plugin-run": "2.0.2",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.0",
"babel-preset-latest-node": "5.4.0",
"eslint": "7.22.0",
"eslint-import-resolver-node": "0.3.4",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-unicorn": "25.0.1",
"pob-babel": "26.5.0",
"pob-babel": "26.7.0",
"rollup": "2.41.2",
"typescript": "4.1.5"
"typescript": "4.2.3"
}
}
8 changes: 4 additions & 4 deletions packages/nightingale-console-output/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -114,17 +114,17 @@
"@pob/eslint-config": "43.0.0",
"@pob/eslint-config-node": "43.1.0",
"@pob/eslint-config-typescript": "43.0.0",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.0",
"babel-preset-latest-node": "5.4.0",
"babel-preset-modern-browsers": "15.0.2",
"eslint": "7.22.0",
"eslint-import-resolver-node": "0.3.4",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-unicorn": "25.0.1",
"pob-babel": "26.5.0",
"pob-babel": "26.7.0",
"rollup": "2.41.2",
"typescript": "4.1.5"
"typescript": "4.2.3"
}
}
8 changes: 4 additions & 4 deletions packages/nightingale-console/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,16 +77,16 @@
"@pob/eslint-config-node": "43.1.0",
"@pob/eslint-config-typescript": "43.0.0",
"@pob/eslint-config-typescript-node": "43.0.0",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.0",
"babel-preset-latest-node": "5.4.0",
"eslint": "7.22.0",
"eslint-import-resolver-node": "0.3.4",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-unicorn": "25.0.1",
"pob-babel": "26.5.0",
"pob-babel": "26.7.0",
"rollup": "2.41.2",
"typescript": "4.1.5"
"typescript": "4.2.3"
}
}
8 changes: 4 additions & 4 deletions packages/nightingale-debug/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@
"@pob/eslint-config-node": "43.1.0",
"@pob/eslint-config-typescript": "43.0.0",
"@types/jest": "26.0.20",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.0",
"babel-jest": "26.6.3",
"babel-preset-latest-node": "5.4.0",
"babel-preset-modern-browsers": "15.0.2",
Expand All @@ -145,10 +145,10 @@
"eslint-plugin-node": "11.1.0",
"eslint-plugin-unicorn": "25.0.1",
"jest": "26.6.3",
"pob-babel": "26.5.0",
"pob-babel": "26.7.0",
"pob-lcov-reporter": "4.0.1",
"rollup": "2.41.2",
"typescript": "4.1.5",
"typescript": "4.2.3",
"xunit-file": "1.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/nightingale-debug/src/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
"overrides": [
{
"files": ["**/*.test.ts", "__tests__/**/*.ts"],
"extends": ["@pob/eslint-config-typescript/test"],
"env": {
"jest": true
},
"extends": ["@pob/eslint-config-typescript/test"],
"rules": {
"import/no-extraneous-dependencies": [
"error",
Expand Down
8 changes: 4 additions & 4 deletions packages/nightingale-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,16 +127,16 @@
"@pob/eslint-config-typescript": "43.0.0",
"@pob/eslint-config-typescript-node": "43.0.0",
"@rollup/plugin-run": "2.0.2",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.0",
"babel-preset-latest-node": "5.4.0",
"eslint": "7.22.0",
"eslint-import-resolver-node": "0.3.4",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-unicorn": "25.0.1",
"pob-babel": "26.5.0",
"pob-babel": "26.7.0",
"rollup": "2.41.2",
"typescript": "4.1.5"
"typescript": "4.2.3"
}
}
8 changes: 4 additions & 4 deletions packages/nightingale-formatter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@
"@pob/eslint-config-node": "43.1.0",
"@pob/eslint-config-typescript": "43.0.0",
"@types/jest": "26.0.20",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.0",
"babel-jest": "26.6.3",
"babel-preset-latest-node": "5.4.0",
"babel-preset-modern-browsers": "15.0.2",
Expand All @@ -147,10 +147,10 @@
"eslint-plugin-node": "11.1.0",
"eslint-plugin-unicorn": "25.0.1",
"jest": "26.6.3",
"pob-babel": "26.5.0",
"pob-babel": "26.7.0",
"pob-lcov-reporter": "4.0.1",
"rollup": "2.41.2",
"typescript": "4.1.5",
"typescript": "4.2.3",
"xunit-file": "1.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/nightingale-formatter/src/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
"overrides": [
{
"files": ["**/*.test.ts", "__tests__/**/*.ts"],
"extends": ["@pob/eslint-config-typescript/test"],
"env": {
"jest": true
},
"extends": ["@pob/eslint-config-typescript/test"],
"rules": {
"import/no-extraneous-dependencies": [
"error",
Expand Down

0 comments on commit eb4e7dc

Please sign in to comment.