Skip to content

Commit

Permalink
fix bob-esbuild-plugin without publishConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloSzx committed Jun 3, 2021
1 parent b6df1b2 commit c05bdf6
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions packages/esbuild-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@
"description": "bob-esbuild main plugin, based on https://github.com/egoist/rollup-plugin-esbuild",
"license": "MIT",
"author": "PabloSzx <pablosaez1995@gmail.com>",
"exports": {
".": {
"require": "./lib/index.js",
"import": "./lib/index.mjs"
},
"./*": {
"require": "./lib/*.js",
"import": "./lib/*.mjs"
}
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
Expand Down Expand Up @@ -36,10 +46,6 @@
"@types/node": "^15.6.1",
"rollup": "^2.50.3"
},
"publishConfig": {
"access": "public",
"directory": "lib"
},
"tsup": {
"entryPoints": [
"src/**/*.ts"
Expand Down

0 comments on commit c05bdf6

Please sign in to comment.