Bugfix. Extract react imports from main bundler to vendor static files

This commit is contained in:
2026-04-08 05:39:11 +01:00
parent c19b7c9607
commit 4b3a4dbc77
38 changed files with 825 additions and 253 deletions
+33 -35
View File
@@ -1,10 +1,34 @@
{
"name": "@moduletrace/bunext",
"module": "index.ts",
"type": "module",
"version": "1.0.55",
"version": "1.0.56",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "index.ts",
"dependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@types/bun": "latest",
"@types/node": "^24.10.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"bun-plugin-tailwind": "^0.1.2",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"esbuild": "^0.27.4",
"lightningcss-wasm": "^1.32.0",
"lodash": "^4.17.23",
"micromatch": "^4.0.8",
"ora": "^9.0.0",
"postcss": "^8.5.8",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.2.2",
"typescript": "^5.0.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@types/lodash": "^4.17.24",
"@types/micromatch": "^4.0.10",
"happy-dom": "^20.8.4"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
@@ -25,6 +49,9 @@
"README.md",
"package.json"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"dev": "tsc --watch",
"git:push": "tsc --noEmit && tsc && git add . && git commit -m 'Update init. Remove uneccessary directores creation' && git push",
@@ -32,35 +59,6 @@
"build": "tsc",
"test": "bun test --max-concurrency=1"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@types/lodash": "^4.17.24",
"@types/micromatch": "^4.0.10",
"happy-dom": "^20.8.4"
},
"peerDependencies": {
"react": "^19",
"react-dom": "^19"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"dependencies": {
"typescript": "^5.0.0",
"@tailwindcss/postcss": "^4.2.2",
"@types/bun": "latest",
"@types/node": "^24.10.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"bun-plugin-tailwind": "^0.1.2",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"esbuild": "^0.27.4",
"lightningcss-wasm": "^1.32.0",
"lodash": "^4.17.23",
"micromatch": "^4.0.8",
"ora": "^9.0.0",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.2"
}
"type": "module",
"types": "dist/index.d.ts"
}