Skip to content

Commit

Permalink
refactor(rollup): remove CJS from outputs
Browse files Browse the repository at this point in the history
BREAKING CHANGE: no longer builds a CJS module, use UMD instead

Signed-off-by: Will Soto <[email protected]>
  • Loading branch information
willsoto committed May 16, 2019
1 parent 51ce4f0 commit aa3454e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import filesize from "rollup-plugin-filesize";
import typescript from "rollup-plugin-typescript";
import pkg from "./package.json";

const formats = ["umd", "esm", "cjs"];
const formats = ["umd", "esm"];
const globals = {
"@nestjs/common": "nestjsCommon",
knex: "Knex",
Expand Down

0 comments on commit aa3454e

Please sign in to comment.