Skip to content

Commit

Permalink
Rename dist/ files from index to turbo-morph
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoroth committed Feb 12, 2023
1 parent 22efa92 commit 62c1ea2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"name": "turbo-morph",
"version": "0.1.0",
"description": "Morphdom integration for Turbo Streams",
"main": "dist/index.js",
"module": "dist/index.js",
"unpkg": "dist/index.umd.js",
"main": "dist/turbo-morph.js",
"module": "dist/turbo-morph.js",
"unpkg": "dist/turbo-morph.umd.js",
"types": "dist/types/index.d.ts",
"author": "Marco Roth",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default [
output: [
{
name: 'TurboMorph',
file: 'dist/index.umd.js',
file: 'dist/turbo-morph.umd.js',
format: 'umd',
banner,
globals: {
Expand All @@ -24,7 +24,7 @@ export default [
}
},
{
file: 'dist/index.js',
file: 'dist/turbo-morph.js',
format: 'es',
banner
}
Expand Down

0 comments on commit 62c1ea2

Please sign in to comment.