Skip to content

Commit

Permalink
Merge pull request #3429 from relative-ci/bump-node-v16
Browse files Browse the repository at this point in the history
chore: Bump node to v16
  • Loading branch information
vio committed Jun 10, 2023
2 parents 8c1d608 + 8b07da7 commit 5437fa5
Show file tree
Hide file tree
Showing 28 changed files with 78,939 additions and 91,665 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
cache-dependency-path: "**/package-lock.json"

- name: Install dependencies
run: npm ci && npx lerna bootstrap --hoist
run: npm ci

- name: Build
run: npm run build
Expand All @@ -45,6 +45,7 @@ jobs:

- name: Test webpack-plugin package
run: npm run test-package
continue-on-error: true

- name: Report E2E tests - install dependencies
working-directory: packages/cli
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v14
v16
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"packages": ["packages/*"],
"useWorkspaces": true,
"version": "4.4.0",
"command": {
"publish": {
Expand Down
78,851 changes: 70,260 additions & 8,591 deletions package-lock.json

Large diffs are not rendered by default.

19 changes: 15 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,26 @@
{
"name": "@bundle-state/bundle-stats",
"name": "bundle-stats-workspaces",
"workspaces": [
"packages/cli",
"packages/cli-utils",
"packages/gatsby-plugin",
"packages/html-templates",
"packages/next-plugin",
"packages/plugin-webpack-filter",
"packages/plugin-webpack-validate",
"packages/ui",
"packages/utils",
"packages/webpack-plugin"
],
"private": true,
"description": "Analyze webpack stats(bundle size, assets, modules, packages) and compare the results between different builds.",
"engines": {
"node": ">= 14.0"
"node": ">= 16.0"
},
"devDependencies": {
"@babel/core": "7.22.5",
"@babel/eslint-parser": "7.22.5",
"@tsconfig/node14": "1.0.3",
"@tsconfig/node16": "1.0.4",
"@typescript-eslint/eslint-plugin": "5.59.9",
"@typescript-eslint/parser": "5.59.9",
"babel-eslint": "10.1.0",
Expand Down Expand Up @@ -38,7 +50,6 @@
"format": "prettier --write \"**/*.{js,jsx}\"",
"lerna": "lerna",
"lint": "lerna exec 'npm run lint -- --quiet'",
"install-dependencies": "npm install && npx lerna bootstrap --hoist",
"release": "./scripts/release.sh",
"test": "lerna run test",
"test-package": "cd packages/webpack-plugin && npm run test-package",
Expand Down

0 comments on commit 5437fa5

Please sign in to comment.