Skip to content

Commit

Permalink
Update package-lock.json, fix internal dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bigtimebuddy committed Sep 9, 2022
1 parent 1786b8f commit 8c3bbaf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 62 deletions.
64 changes: 3 additions & 61 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ async function main()
dependencies,
nodeDependencies,
peerDependencies,
pixiRequirements,
} = pkg.config;

const banner = [
Expand All @@ -136,7 +137,8 @@ async function main()
// Check for bundle folder
const external = Object.keys(dependencies || [])
.concat(Object.keys(peerDependencies || []))
.concat(nodeDependencies || []);
.concat(nodeDependencies || [])
.concat(pixiRequirements || []);
const basePath = path.relative(__dirname, pkg.dir);
const input = path.join(basePath, 'src/index.ts');
const freeze = false;
Expand Down

0 comments on commit 8c3bbaf

Please sign in to comment.