Created
October 23, 2018 18:15
-
-
Save tbranyen/2e2ccfbef6f33ef435f09087216a8692 to your computer and use it in GitHub Desktop.
Build out ESM, CJS, UMD, Script, UMD Minified, and Script Minified
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"builds": [{ | |
"input": "lib/**/*.js", | |
"output": "dist/esm", | |
"outputType": "module", | |
"debug": true | |
}, { | |
"input": "lib/**/*.js", | |
"output": "dist/cjs", | |
"outputType": "commonjs", | |
"debug": true | |
}, { | |
"input": "lib/index.js", | |
"output": "dist/sample-library.umd.js", | |
"outputType": "umd", | |
"debug": true | |
}, { | |
"input": "lib/index.js", | |
"output": "dist/sample-library.js", | |
"debug": true | |
}, { | |
"input": "lib/index.js", | |
"output": "dist/sample-library.umd.min.js", | |
"outputType": "umd" | |
}, { | |
"input": "lib/index.js", | |
"output": "dist/sample-library.min.js" | |
}] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment