Skip to content

Commit

Permalink
Fixes for webamp package
Browse files Browse the repository at this point in the history
  • Loading branch information
captbaritone committed Oct 3, 2024
1 parent 66fb476 commit 8083662
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions packages/webamp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
"description": "Winamp 2 implemented in HTML5 and JavaScript",
"files": [
"built",
"!built/types/demo"
"!built/types/demo",
"!built/*.html",
"!built/tsBuilt"
],
"types": "built/types/js/webamp.d.ts",
"browser": "built/webamp.bundle.min.js",
Expand All @@ -23,7 +25,7 @@
},
"./lazy": {
"require": "./built/webamp.lazy-bundle.js",
"import": "./built/webamp.lazy-bundle.mjs",
"import": "./built/webamp.lazy-bundle.min.mjs",
"types": "./built/types/js/webampLazy.d.ts"
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/webamp/scripts/rollup.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const BUNDLES = [
input: "js/webamp.ts",
minify: true,
output: {
file: "built/webamp.bundle.mjs",
file: "built/webamp.bundle.min.mjs",
format: "module",
},
},
Expand Down

0 comments on commit 8083662

Please sign in to comment.