Skip to content

Commit 842877c

Browse files
committed
fix(deployment): wrong name of compiled files
1 parent 64ee48e commit 842877c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"url": "https://github.com/kit-data-manager/com_mapping-service-input/issues"
2020
},
2121
"type": "module",
22-
"main": "index.js",
22+
"main": "./dist/com_mapping-service-input.umd.js",
2323
"scripts": {
2424
"dev": "vite",
2525
"format": "prettier --write .",

vite.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ export default defineConfig({
1111
sourcemap: true,
1212
lib: {
1313
entry: resolve(__dirname, "src/main.ts"),
14-
name: "webcomponent_typed-pid-maker_pid-list",
14+
name: "com_mapping-service-input",
1515
formats: ["es", "umd"],
16-
fileName: (format) => `typid-known-pids-table.${format}.js`,
16+
fileName: (format) => `com_mapping-service-input.${format}.js`,
1717
},
1818
rollupOptions: {},
1919
},

0 commit comments

Comments
 (0)