Skip to content

Commit

Permalink
Ensure dependencies get bundled in
Browse files Browse the repository at this point in the history
  • Loading branch information
captbaritone committed May 28, 2024
1 parent 3d89b6d commit 78e0937
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions packages/webamp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webamp",
"version": "0.0.0-next-bd2022a8",
"version": "0.0.0-next-17a832d8",
"description": "Winamp 2 implemented in HTML5 and JavaScript",
"files": [
"built",
Expand All @@ -14,37 +14,37 @@
"eager-cjs": {
"source": "js/webamp.ts",
"outputFormat": "commonjs",
"isLibrary": true,
"isLibrary": false,
"optimize": false
},
"eager-cjs-min": {
"source": "js/webamp.ts",
"outputFormat": "commonjs",
"isLibrary": true,
"isLibrary": false,
"optimize": true
},
"eager-mjs": {
"source": "js/webamp.ts",
"outputFormat": "esmodule",
"isLibrary": true,
"isLibrary": false,
"optimize": false
},
"lazy-cjs": {
"source": "js/webampLazy.tsx",
"outputFormat": "commonjs",
"isLibrary": true,
"isLibrary": false,
"optimize": false
},
"lazy-cjs-min": {
"source": "js/webampLazy.tsx",
"outputFormat": "commonjs",
"isLibrary": true,
"isLibrary": false,
"optimize": true
},
"lazy-mjs": {
"source": "js/webampLazy.tsx",
"outputFormat": "esmodule",
"isLibrary": true,
"isLibrary": false,
"optimize": false
},
"demo-site": {
Expand All @@ -54,8 +54,8 @@
"exports": {
".": {
"require": "./built/webamp.bundle.min.js",
"types": "./built/types/js/webamp.d.ts",
"import": "./built/webamp.bundle.min.mjs"
"import": "./built/webamp.bundle.min.mjs",
"types": "./built/types/js/webamp.d.ts"
},
"./lazy": {
"require": "./built/webamp.lazy-bundle.js",
Expand Down

0 comments on commit 78e0937

Please sign in to comment.