Skip to content

Commit 62c1ea2

Browse files
committed
Rename dist/ files from index to turbo-morph
1 parent 22efa92 commit 62c1ea2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
"name": "turbo-morph",
33
"version": "0.1.0",
44
"description": "Morphdom integration for Turbo Streams",
5-
"main": "dist/index.js",
6-
"module": "dist/index.js",
7-
"unpkg": "dist/index.umd.js",
5+
"main": "dist/turbo-morph.js",
6+
"module": "dist/turbo-morph.js",
7+
"unpkg": "dist/turbo-morph.umd.js",
88
"types": "dist/types/index.d.ts",
99
"author": "Marco Roth",
1010
"license": "MIT",

rollup.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default [
1515
output: [
1616
{
1717
name: 'TurboMorph',
18-
file: 'dist/index.umd.js',
18+
file: 'dist/turbo-morph.umd.js',
1919
format: 'umd',
2020
banner,
2121
globals: {
@@ -24,7 +24,7 @@ export default [
2424
}
2525
},
2626
{
27-
file: 'dist/index.js',
27+
file: 'dist/turbo-morph.js',
2828
format: 'es',
2929
banner
3030
}

0 commit comments

Comments
 (0)