2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-06-05 16:42:27 +03:00

chore: update build system and dependencies (#155)

* chore: fix swc + rollup transform

* chore: fix pkg-task args parsing

* chore: update lerna, rollup and swc to build proper es6 files

* chore: fix swc build for es targets

* ci: nodes matrix to newest versions

* ci: rollup to mjs, swc to json

* ci: add canary publish

* ci: no git tag for canary

* ci: no private publish for canary

* ci: remove --canary from publish-canary

* fix: remove gitHead from package.json

* fix: tests setup

* fix: bbob plugin helper imports

* fix: plugin helper build priority and circular deps

* fix: add nx for parallel build

* fix: npm ci

* fix: code ql

* fix: remove exports directive

* fix: rollup build

* fix: vue2 test and minify

* fix: bundle size limits

* feat: bundlephobia pr review

* feat: bundlephobia more popular action

* feat: publish branch to npm

* fix: secret NPM token

* fix: bundlephobia version

* fix: remove bundlephobia checker

* fix: npm publish in PR

* chore: release 2.8.3

* chore: fix test runs on CI, removed 14.x version

* fix: sync package-lock

* fix: remove lock files in sub packages

* fix: bundlesize > bundlesize2

* fix: update lock files

* fix: lock file in vue2-example
This commit is contained in:
Nikolay Kost
2022-12-18 03:09:56 +02:00
committed by GitHub
parent 09a197f653
commit 2d1a08ba9a
66 changed files with 24470 additions and 12801 deletions
+11
View File
@@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.8.3](https://github.com/JiLiZART/bbob/compare/v2.8.2...v2.8.3) (2022-12-18)
### Bug Fixes
* remove gitHead from package.json ([2b3ffa9](https://github.com/JiLiZART/bbob/commit/2b3ffa93233decdb3f2c93e91bd93582525f9210))
## [2.8.2](https://github.com/JiLiZART/bbob/compare/v2.8.1...v2.8.2) (2022-11-28)
**Note:** Version bump only for package @bbob/cli
+138 -32
View File
@@ -1,85 +1,191 @@
{
"name": "@bbob/cli",
"version": "2.8.2",
"lockfileVersion": 1,
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@bbob/cli",
"version": "2.8.2",
"license": "MIT",
"dependencies": {
"@bbob/html": "^2.8.2",
"@bbob/preset-html5": "^2.8.2",
"commander": "^2.15.1"
},
"bin": {
"bbob": "bin/bbob"
}
},
"../bbob-core": {
"name": "@bbob/core",
"version": "2.8.2",
"license": "MIT",
"dependencies": {
"@bbob/parser": "^2.8.2"
}
},
"../bbob-core/node_modules/@bbob/parser": {
"resolved": "../bbob-parser",
"link": true
},
"../bbob-html": {
"name": "@bbob/html",
"version": "2.8.2",
"license": "MIT",
"dependencies": {
"@bbob/core": "^2.8.2",
"@bbob/plugin-helper": "^2.8.2"
}
},
"../bbob-html/node_modules/@bbob/core": {
"resolved": "../bbob-core",
"link": true
},
"../bbob-html/node_modules/@bbob/plugin-helper": {
"resolved": "../bbob-plugin-helper",
"link": true
},
"../bbob-parser": {
"name": "@bbob/parser",
"version": "2.8.2",
"license": "MIT",
"dependencies": {
"@bbob/plugin-helper": "^2.8.2"
}
},
"../bbob-parser/node_modules/@bbob/plugin-helper": {
"resolved": "../bbob-plugin-helper",
"link": true
},
"../bbob-plugin-helper": {
"name": "@bbob/plugin-helper",
"version": "2.8.2",
"license": "MIT"
},
"../bbob-preset": {
"name": "@bbob/preset",
"version": "2.8.2",
"license": "MIT"
},
"../bbob-preset-html5": {
"name": "@bbob/preset-html5",
"version": "2.8.2",
"license": "MIT",
"dependencies": {
"@bbob/plugin-helper": "^2.8.2",
"@bbob/preset": "^2.8.2"
},
"devDependencies": {
"@bbob/html": "^2.8.2"
}
},
"../bbob-preset-html5/node_modules/@bbob/html": {
"resolved": "../bbob-html",
"link": true
},
"../bbob-preset-html5/node_modules/@bbob/plugin-helper": {
"resolved": "../bbob-plugin-helper",
"link": true
},
"../bbob-preset-html5/node_modules/@bbob/preset": {
"resolved": "../bbob-preset",
"link": true
},
"node_modules/@bbob/html": {
"resolved": "../bbob-html",
"link": true
},
"node_modules/@bbob/preset-html5": {
"resolved": "../bbob-preset-html5",
"link": true
},
"node_modules/commander": {
"version": "2.17.1",
"license": "MIT"
}
},
"dependencies": {
"@bbob/html": {
"version": "2.5.6",
"version": "file:../bbob-html",
"requires": {
"@bbob/core": "^2.5.6",
"@bbob/plugin-helper": "^2.5.6"
"@bbob/core": "^2.8.2",
"@bbob/plugin-helper": "^2.8.2"
},
"dependencies": {
"@bbob/core": {
"version": "2.5.6",
"version": "file:../bbob-core",
"requires": {
"@bbob/parser": "^2.5.6"
"@bbob/parser": "^2.8.2"
},
"dependencies": {
"@bbob/parser": {
"version": "2.5.6",
"version": "file:../bbob-parser",
"requires": {
"@bbob/plugin-helper": "^2.5.6"
"@bbob/plugin-helper": "^2.8.2"
},
"dependencies": {
"@bbob/plugin-helper": {
"version": "2.5.6"
"version": "file:../bbob-plugin-helper"
}
}
}
}
},
"@bbob/plugin-helper": {
"version": "2.5.6"
"version": "file:../bbob-plugin-helper"
}
}
},
"@bbob/preset-html5": {
"version": "2.5.6",
"version": "file:../bbob-preset-html5",
"requires": {
"@bbob/plugin-helper": "^2.5.6",
"@bbob/preset": "^2.5.6"
"@bbob/html": "^2.8.2",
"@bbob/plugin-helper": "^2.8.2",
"@bbob/preset": "^2.8.2"
},
"dependencies": {
"@bbob/html": {
"version": "file:../bbob-html",
"requires": {
"@bbob/core": "^2.5.6",
"@bbob/plugin-helper": "^2.5.6"
"@bbob/core": "^2.8.2",
"@bbob/plugin-helper": "^2.8.2"
},
"dependencies": {
"@bbob/core": {
"version": "2.5.6",
"version": "file:../bbob-core",
"requires": {
"@bbob/parser": "^2.5.6"
"@bbob/parser": "^2.8.2"
},
"dependencies": {}
"dependencies": {
"@bbob/parser": {
"version": "file:../bbob-parser",
"requires": {
"@bbob/plugin-helper": "^2.8.2"
},
"dependencies": {
"@bbob/plugin-helper": {
"version": "file:../bbob-plugin-helper"
}
}
}
}
},
"@bbob/plugin-helper": {
"version": "2.5.6"
"version": "file:../bbob-plugin-helper"
}
}
},
"@bbob/plugin-helper": {
"version": "2.5.6"
"version": "file:../bbob-plugin-helper"
},
"@bbob/preset": {
"version": "2.5.6",
"requires": {
"@bbob/plugin-helper": "^2.5.6"
},
"dependencies": {
"@bbob/plugin-helper": {
"version": "2.5.6"
}
}
"version": "file:../bbob-preset"
}
}
},
"commander": {
"version": "2.20.3",
"resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
"integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
"version": "2.17.1"
}
}
}
+1 -2
View File
@@ -37,6 +37,5 @@
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"gitHead": "01b0916b4a92c14e205397bebd58cf9c691cd540"
}
}