Skip to content

Commit

Permalink
[Identity] Fix warning on unresolved dependencies (#9855)
Browse files Browse the repository at this point in the history
  • Loading branch information
ramya-rao-a authored Jul 5, 2020
1 parent e748a31 commit a741d0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/identity/identity/rollup.base.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const input = "dist-esm/src/index.js";
const production = process.env.NODE_ENV === "production";

export function nodeConfig(test = false) {
const externalNodeBuiltins = ["crypto", "events", "fs", "child-process"];
const externalNodeBuiltins = ["crypto", "events", "fs", "child_process"];
const baseConfig = {
input: input,
external: depNames.concat(externalNodeBuiltins),
Expand Down

0 comments on commit a741d0a

Please sign in to comment.