Skip to content

Commit

Permalink
Fix Rollup warning, ignore used node dependencies (pixijs#8493)
Browse files Browse the repository at this point in the history
  • Loading branch information
bigtimebuddy committed Jul 14, 2022
1 parent 16005f8 commit b928798
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions bundles/pixi.js-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
"gl": "^5.0.0",
"xml2js": "^0.4.23"
},
"nodeDependencies": ["fs", "path"],
"publishConfig": {
"access": "public"
},
Expand Down
4 changes: 3 additions & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ async function main()
standalone,
version,
dependencies,
nodeDependencies,
peerDependencies,
// TODO: remove this in v7, along with the declaration in the package.json
// This is a temporary fix to skip transpiling on the @pixi/node package
Expand All @@ -137,7 +138,8 @@ async function main()

// Check for bundle folder
const external = Object.keys(dependencies || [])
.concat(Object.keys(peerDependencies || []));
.concat(Object.keys(peerDependencies || []))
.concat(nodeDependencies || []);
const basePath = path.relative(__dirname, pkg.dir);
const input = path.join(basePath, 'src/index.ts');
const freeze = false;
Expand Down

0 comments on commit b928798

Please sign in to comment.