Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V5 #3451

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft

V5 #3451

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading