Skip to content

Commit 381df53

Browse files
committed
Rename dist files
1 parent 1fdbb9f commit 381df53

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build/rollup.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ if (!argv.format || argv.format === "es") {
8686
input: "src/entry.esm.js",
8787
external,
8888
output: {
89-
file: "dist/vue-notion.esm.js",
89+
file: "dist/esm.js", // custom
9090
format: "esm",
9191
exports: "named",
9292
},
@@ -118,7 +118,7 @@ if (!argv.format || argv.format === "cjs") {
118118
external,
119119
output: {
120120
compact: true,
121-
file: "dist/vue-notion.ssr.js",
121+
file: "dist/ssr.js", // custom
122122
format: "cjs",
123123
name: "VueNotion",
124124
exports: "auto",
@@ -147,7 +147,7 @@ if (!argv.format || argv.format === "iife") {
147147
external,
148148
output: {
149149
compact: true,
150-
file: "dist/vue-notion.min.js",
150+
file: "dist/min.js", // custom
151151
format: "iife",
152152
name: "VueNotion",
153153
exports: "auto",

0 commit comments

Comments
 (0)