Skip to content

Commit

Permalink
fix: republish 4.10.2 as 5.0.0 (rollup v3 and node 14)
Browse files Browse the repository at this point in the history
BREAKING CHANGE:

require node.js 14 or above
  • Loading branch information
egoist committed Nov 8, 2022
1 parent 048e02f commit c806163
Show file tree
Hide file tree
Showing 4 changed files with 1,281 additions and 1,751 deletions.
50 changes: 26 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
Expand All @@ -13,46 +14,47 @@
"repository": "https://github.com/egoist/rollup-plugin-esbuild",
"scripts": {
"test": "jest",
"example:rollup-node-resolve": "rollup -c example/rollup.config.js",
"example:esbuild-optimize-deps": "OPTIMIZE=true rollup -c example/rollup.config.js",
"example:rollup-node-resolve": "rollup --bundleConfigAsCjs -c example/rollup.config.js",
"example:esbuild-optimize-deps": "OPTIMIZE=true rollup --bundleConfigAsCjs -c example/rollup.config.js",
"build": "rm -rf dist && tsup src/index.ts --format esm,cjs --dts-resolve",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.1",
"@rollup/plugin-commonjs": "^23.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@types/debug": "^4.1.7",
"@types/jest": "^27.0.2",
"@types/node": "14.14.37",
"esbuild": "^0.14.51",
"@types/jest": "^29.1.2",
"@types/node": "16.11.66",
"esbuild": "^0.15.11",
"istextorbinary": "^6.0.0",
"jest": "^27.3.1",
"jest": "^29.2.0",
"lodash": "^4.17.21",
"prettier": "^2.4.1",
"react": "^17.0.2",
"rollup": "^2.59.0",
"three": "^0.136.0",
"ts-essentials": "^9.1.0",
"ts-jest": "^27.0.7",
"tsup": "^5.7.2",
"typescript": "^4.4.4",
"vue": "^3.2.26"
"prettier": "^2.7.1",
"react": "^18.2.0",
"rollup": "^3.2.2",
"three": "^0.145.0",
"ts-essentials": "^9.3.0",
"ts-jest": "^29.0.3",
"tsup": "^6.3.0",
"typescript": "^4.8.4",
"vue": "^3.2.41"
},
"dependencies": {
"@rollup/pluginutils": "^4.1.1",
"debug": "^4.3.3",
"es-module-lexer": "^0.9.3",
"joycon": "^3.0.1",
"jsonc-parser": "^3.0.0"
"@rollup/pluginutils": "^5.0.1",
"debug": "^4.3.4",
"es-module-lexer": "^1.0.5",
"joycon": "^3.1.1",
"jsonc-parser": "^3.2.0"
},
"peerDependencies": {
"esbuild": ">=0.10.1",
"rollup": "^1.20.0 || ^2.0.0"
"rollup": "^1.20.0 || ^2.0.0 || ^3.0.0"
},
"engines": {
"node": ">=12"
"node": ">=14.18.0",
"npm": ">=8.0.0"
}
}
Loading

0 comments on commit c806163

Please sign in to comment.