Skip to content

Commit

Permalink
refactor: add back edge plugin entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien-R44 committed Jun 2, 2024
1 parent c4a53a4 commit 00f435e
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@
"exports": {
".": "./build/index.js",
"./vite_provider": "./build/providers/vite_provider.js",
"./plugins/edge": "./build/src/plugins/edge.js",
"./build_hook": "./build/src/hooks/build_hook.js",
"./services/main": "./build/services/vite.js",
"./types": "./build/src/types.js",
"./client": "./build/src/client/main.js",
"./build_hook": "./build/src/hooks/build_hook.js"
"./types": "./build/src/types.js"
},
"scripts": {
"clean": "del-cli build",
Expand Down Expand Up @@ -121,12 +122,13 @@
},
"tsup": {
"entry": [
"./index.ts",
"./src/hooks/build_hook.ts",
"./providers/vite_provider.ts",
"./src/plugins/edge.ts",
"./src/client/main.ts",
"./services/vite.ts",
"./src/types.ts",
"./src/client/main.ts",
"./src/hooks/build_hook.ts"
"./index.ts"
],
"outDir": "./build",
"clean": true,
Expand Down

0 comments on commit 00f435e

Please sign in to comment.