Skip to content

Commit

Permalink
build: disable minification for UMD outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Jan 15, 2019
1 parent c12ad1c commit d14c94b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 1 addition & 3 deletions scripts/bundle-module
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,7 @@ const build =
interop: false,
sourcemap: true,
sourcemapExcludeSources: true,
},
true,
true
}
);

fs.writeFileSync(".meta/size.json", JSON.stringify({ esm, cjs, umd }));
Expand Down
2 changes: 2 additions & 0 deletions scripts/depgraph
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,7 @@ tx.run(
([p, d]) => g.addDependency(p, d),
packages);

// console.log(g.transitiveDependencies("@thi.ng/geom3"));

console.log("topo order:", g.sort().map((x) => x.replace("@thi.ng/", "")).join(" "));
console.log("done");

0 comments on commit d14c94b

Please sign in to comment.