Skip to content

Commit

Permalink
chore: upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
3cp committed May 18, 2024
1 parent c32d750 commit fd920f8
Show file tree
Hide file tree
Showing 13 changed files with 57 additions and 59 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: [16, 18, 20]
node_version: [20, 22]
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/e2e-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fail-fast: false
matrix:
node_version:
- 18
- 20
os:
- ubuntu-latest
target_features:
Expand All @@ -30,9 +30,9 @@ jobs:
- react,babel
- react,typescript
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
- run: npm install
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/e2e-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
node_version:
- 18
- 20
os:
- macOS-latest
target_features:
Expand All @@ -27,9 +27,9 @@ jobs:
- react,babel
- react,typescript
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
- run: npm install
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/e2e-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
node_version:
- 18
- 20
os:
- windows-latest
target_features:
Expand All @@ -27,9 +27,9 @@ jobs:
- react,babel
- react,typescript
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
- run: npm install
Expand Down
3 changes: 1 addition & 2 deletions common/babel.config.json__if_babel
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
/* @endif */
],
"plugins": [
["@babel/plugin-proposal-decorators", { "legacy": true }],
["@babel/plugin-proposal-class-properties", { "loose": true }],
["@babel/plugin-proposal-decorators", { "version": "legacy" }],
"@babel/plugin-syntax-dynamic-import"
]/* @if jasmine || mocha || tape */,
"env": {
Expand Down
45 changes: 22 additions & 23 deletions common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@
"license": "UNLICENSED",
"devDependencies": {
// @if babel
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.22.5",
"@babel/plugin-proposal-decorators": "^7.24.1",
"gulp-babel": "^8.0.0",
// @if !evergreen
"regenerator-runtime": "0.13.2",
Expand All @@ -26,39 +25,39 @@
// @endif
// @endif

"eslint": "^8.43.0",
"eslint": "^8.57.0",

// @if babel
"@babel/eslint-parser": "^7.22.5",
"@babel/eslint-parser": "^7.24.5",
// @endif

// @if typescript
"typescript": "^5.1.6",
"tslib": "^2.6.0",
"typescript": "^5.4.5",
"tslib": "^2.6.2",
"gulp-typescript": "^5.0.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
// @endif

"stylelint": "^15.11.0",
"stylelint": "^16.5.0",
// @if css
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard": "^36.0.0",
// @endif

// @if sass
"gulp-dart-sass": "^1.0.2",
"node-sass-package-importer": "^5.3.2",
"stylelint-config-standard-scss": "^11.1.0",
"gulp-dart-sass": "^1.1.0",
"node-sass-package-importer": "^5.3.3",
"stylelint-config-standard-scss": "^13.1.0",
// @endif

// @if less
"gulp-less": "^5.0.0",
"stylelint-config-standard-less": "^2.0.0",
"stylelint-config-standard-less": "^3.0.1",
// @endif

// @if jasmine || tape || mocha
"browser-do": "^4.1.0",
"browser-do": "^5.0.0",
// @endif

"merge2": "^1.4.1",
Expand All @@ -67,16 +66,16 @@
"gulp-sourcemaps": "^3.0.0",
// @endif

"gulp-postcss": "^9.0.1",
"postcss": "^8.4.24",
"autoprefixer": "^10.4.14",
"gulp-postcss": "^10.0.0",
"postcss": "^8.4.38",
"autoprefixer": "^10.4.19",
"postcss-url": "^10.1.3",

"connect": "^3.7.0",
"connect-history-api-fallback": "^2.0.0",
"connect-injector": "^0.4.4",
"serve-static": "^1.15.0",
"socket.io": "^4.7.1",
"socket.io": "^4.7.5",
"open": "^8.4.2",

"cross-env": "^7.0.3",
Expand Down Expand Up @@ -127,7 +126,7 @@
},
// npm v8 feature to bypass outdated gulp deps
"overrides": {
"chokidar": "^3.5.3",
"chokidar": "^3.6.0",
"glob-stream": "^7.0.0",
"glob-parent": "^6.0.2",
"micromatch": "^4.0.5"
Expand Down
4 changes: 2 additions & 2 deletions jasmine/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"devDependencies": {
"jasmine-core": "^4.6.0",
"jasmine-core": "^5.1.2",
// @if typescript
"@types/jasmine": "^4.3.5",
"@types/jasmine": "^5.1.4",
// @endif
},
"scripts": {
Expand Down
10 changes: 5 additions & 5 deletions jest/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"devDependencies": {
"jest": "^29.5.0",
"jest": "^29.7.0",
// @if !aurelia
"jest-environment-jsdom": "^29.5.0",
"jest-environment-jsdom": "^29.7.0",
// @endif
"jest-transform-stub": "^2.0.0",
// @if babel
"babel-jest": "^29.5.0",
"babel-jest": "^29.7.0",
// @endif
// @if typescript
"@types/jest": "^29.5.2",
"ts-jest": "^29.1.0",
"@types/jest": "^29.5.12",
"ts-jest": "^29.1.2",
// @endif
},
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions mocha/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"devDependencies": {
"mocha": "^10.2.0",
"chai": "^4.3.7",
"mocha": "^10.4.0",
"chai": "^5.1.1",
// @if typescript
"@types/mocha": "^10.0.1",
"@types/mocha": "^10.0.6",
// @endif
},
"scripts": {
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
"description": "'makes' skeleton for creating app using dumber bundler. This package.json file is not required by 'makes', it's only to enable testing on skeletons.",
"license": "MIT",
"devDependencies": {
"ava": "^3.15.0",
"ava": "^6.1.3",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"del": "^6.1.1",
"glob": "^10.3.1",
"glob": "^10.3.15",
"makes": "^3.2.0",
"npm-check-updates": "^16.10.13",
"puppeteer": "^20.7.4",
"semver": "^7.5.3",
"standard-changelog": "^3.0.0",
"npm-check-updates": "^16.14.20",
"puppeteer": "^22.9.0",
"semver": "^7.6.2",
"standard-changelog": "^6.0.0",
"tree-kill": "^1.2.2",
"vinyl": "^3.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion playwright/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"devDependencies": {
"@playwright/test": "^1.35.1",
"@playwright/test": "^1.44.0",
},
"scripts": {
"test:e2e": "playwright test"
Expand Down
10 changes: 5 additions & 5 deletions react/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"devDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"@babel/preset-react": "^7.22.5",
"eslint-plugin-react": "^7.32.2"
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-test-renderer": "^18.3.1",
"@babel/preset-react": "^7.24.1",
"eslint-plugin-react": "^7.34.1"
}
}
4 changes: 2 additions & 2 deletions tape/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"devDependencies": {
"tape": "^5.6.3",
"tape": "^5.7.5",
// @if typescript
"@types/tape": "^5.6.0"
"@types/tape": "^5.6.4"
// @endif
},
"scripts": {
Expand Down

0 comments on commit fd920f8

Please sign in to comment.