2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-06-11 18:02:26 +03:00

feat: typescript support (#185)

* feat: initial typescript support

* feat: typescript support

* feat(plugin-helper): move files to typescript

* chore: update lock files

* feat: preset types

* fix: build

* fix: benchmark

* fix: remove pnpm cache

* fix: bench action

* fix: pnpm recursive install

* fix: nx cache

* fix: lock file

* fix: workflows

* fix: lerna support in pnpm

* fix: pnpm workspace

* fix: remove unused files

* fix: pnpm lock file

* fix: update lerna for support pnpm

* fix: lerna bootstrap

* fix: rollup build

* fix: update nx

* fix: build

* fix: add nx dep target

* fix: remove nx cache

* fix: workflow run on push only for master

* fix: test workflow run on push only for master

* fix: remove parallel for gen types

* fix: benchmark

* fix: benchmark imports

* fix: pnpm

* fix: types errors and pnpm

* fix: types

* fix: types

* refactor: parser

* fix(parser): tests

* fix: preset tests

* fix: react types

* fix: react type declarations

* fix: pnpm lock file

* fix: react preset types

* fix: lock file

* fix: vue2 types

* feat: dev container support

* fix: types

* fix: types

* refactor: rewrite pkg-task, add nx gen-types deps, fix react/render.ts

* refactor: types

* fix: types

* fix: rename gen-types to types

* fix: nx build order

* fix: nx reset

* fix: define nx deps explicit

* fix: build

* fix: nx

* fix: nx order build

* fix: nx deps

* fix: bbob cli tests

* fix: tests

* fix: cli tests and import

* fix: test cover

* fix: cli cover
This commit is contained in:
Nikolay Kost
2024-04-23 21:11:14 +02:00
committed by GitHub
parent 05246b2aea
commit 8797f7f363
149 changed files with 6102 additions and 3670 deletions
+42 -26
View File
@@ -1,7 +1,8 @@
{
"name": "bbob",
"scripts": {
"prepublishOnly": "npm run test",
"bootstrap": "lerna bootstrap --no-ci",
"bootstrap": "pnpm re",
"publish-ci": "npm run build && lerna publish from-package --yes --include-merged-tags --conventional-commits",
"publish-canary": "npm run build && lerna publish --yes --include-merged-tags --conventional-commits --no-private --no-git-tag-version",
"publish-from-packages": "npm run build && lerna publish from-package --yes --include-merged-tags --conventional-commits --create-release github",
@@ -10,11 +11,13 @@
"publish-minor": "npm run build && lerna version minor --include-merged-tags --conventional-commits --no-git-tag-version --no-private",
"size": "nx run-many --target=size",
"bundlesize": "nx run-many --target=bundlesize",
"test": "npm run build && nx run-many --target=link && nx run-many --target=test",
"test": "nx run-many --target=test",
"cover": "nx run-many --target=cover",
"build": "nx run-many --target=build",
"types": "nx run-many --target=types",
"release": "npm run build && changeset publish",
"lint": "nx run-many --target=link && npm run build && nx run-many --target=lint"
"lint": "nx run-many --target=lint",
"cleanup": "node scripts/cleanup"
},
"author": {
"name": "Nikolay Kostyurin <jilizart@gmail.com>",
@@ -26,14 +29,13 @@
"@changesets/cli": "2.26.2",
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"@nrwl/cli": "15.3.3",
"@rollup/plugin-commonjs": "23.0.2",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-replace": "5.0.1",
"@size-limit/preset-small-lib": "6.0.1",
"@swc/cli": "0.1.57",
"@swc/core": "1.3.16",
"@swc/jest": "0.2.23",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-replace": "5.0.5",
"@size-limit/preset-small-lib": "11.0.1",
"@swc/cli": "0.3.10",
"@swc/core": "1.3.107",
"@swc/jest": "0.2.36",
"@testing-library/dom": "9.3.1",
"@testing-library/jest-dom": "6.1.2",
"bundlesize2": "0.0.31",
@@ -46,18 +48,26 @@
"eslint-plugin-react": "7.26.1",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "7.0.2",
"jest": "29.5.0",
"jest-environment-jsdom": "29.6.4",
"lerna": "6.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lerna": "7.4.1",
"lint-staged": "11.2.3",
"microtime": "3.0.0",
"nx": "15.3.3",
"posthtml-render": "^3.0.0",
"rimraf": "^3.0.2",
"rollup": "3.3.0",
"nx": "18.3.3",
"posthtml-render": "3.0.0",
"rimraf": "5.0.5",
"rollup": "4.1.5",
"rollup-plugin-gzip": "3.1.0",
"rollup-plugin-swc3": "0.7.0",
"size-limit": "6.0.1"
"rollup-plugin-swc3": "0.11.0",
"size-limit": "11.0.1",
"typescript": "5.1.6",
"@types/node": "20.4.5",
"@types/jest": "29.5.3",
"@types/react": "18.2.18",
"@nx/eslint": "18.3.3",
"@nx/rollup": "18.3.3",
"@nx/jest": "18.3.3",
"@bbob/scripts": "*"
},
"publishConfig": {
"access": "public",
@@ -69,15 +79,18 @@
}
},
"pkgTasks": {
"build-commonjs": "@/cross-env BABEL_ENV=commonjs NODE_ENV=production @/swc --config-file ../../.swcrc-commonjs.json --out-dir lib src",
"build-es": "@/cross-env BABEL_ENV=es NODE_ENV=production @/swc --config-file ../../.swcrc.json --out-dir es src",
"build-umd": "@/cross-env BABEL_ENV=rollup NODE_ENV=production @/rollup --config ../../rollup.config.mjs",
"build:commonjs": "@/cross-env BABEL_ENV=commonjs NODE_ENV=production @/swc ./src/ --config-file ../../.swcrc-commonjs.json --out-dir lib --strip-leading-paths",
"build:es": "@/cross-env BABEL_ENV=es NODE_ENV=production @/swc ./src/ --config-file ../../.swcrc.json --out-dir es --strip-leading-paths",
"build:umd": "@/cross-env BABEL_ENV=rollup NODE_ENV=production @/rollup --config ../../rollup.config.mjs",
"build": "npm run build:es && npm run build:commonjs && npm run build:umd",
"test": "@/jest",
"cover": "@/jest --config ../../jest.config.js --coverage .",
"cover": "@/jest --coverage .",
"lint": "@/eslint .",
"bundlesize": "npm run build && @/cross-env NODE_ENV=production @/bundlesize ."
"types": "@/tsc",
"bundlesize": "npm run build && @/cross-env NODE_ENV=production @/bundlesize .",
"size": "npm run build && @/cross-env NODE_ENV=production @/size-limit ."
},
"packageManager": "pnpm@8.7.6",
"packageManager": "pnpm@8.15.1",
"pnpm": {
"overrides": {
"semver@>=7.0.0 <7.5.2": ">=7.5.2",
@@ -100,5 +113,8 @@
}
}
}
},
"nx": {
"includedScripts": []
}
}