├── .babelrc ├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── ci.yml ├── .gitignore ├── .huskyrc ├── .jsdocrc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── .nojekyll ├── MinifyOptions.jsdoc.html ├── MinifyPlugin.jsdoc.html ├── fonts │ ├── OpenSans-Bold-webfont.eot │ ├── OpenSans-Bold-webfont.svg │ ├── OpenSans-Bold-webfont.woff │ ├── OpenSans-BoldItalic-webfont.eot │ ├── OpenSans-BoldItalic-webfont.svg │ ├── OpenSans-BoldItalic-webfont.woff │ ├── OpenSans-Italic-webfont.eot │ ├── OpenSans-Italic-webfont.svg │ ├── OpenSans-Italic-webfont.woff │ ├── OpenSans-Light-webfont.eot │ ├── OpenSans-Light-webfont.svg │ ├── OpenSans-Light-webfont.woff │ ├── OpenSans-LightItalic-webfont.eot │ ├── OpenSans-LightItalic-webfont.svg │ ├── OpenSans-LightItalic-webfont.woff │ ├── OpenSans-Regular-webfont.eot │ ├── OpenSans-Regular-webfont.svg │ └── OpenSans-Regular-webfont.woff ├── index.html ├── index.js.html ├── module-rollup-plugin-babel-minify.MinifyOptions.html ├── module-rollup-plugin-babel-minify.MinifyPlugin.html ├── module-rollup-plugin-babel-minify.html ├── scripts │ ├── linenumber.js │ └── prettify │ │ ├── Apache-License-2.0.txt │ │ ├── lang-css.js │ │ └── prettify.js └── styles │ ├── jsdoc-default.css │ ├── prettify-jsdoc.css │ └── prettify-tomorrow.css ├── package.json ├── src ├── MinifyOptions.jsdoc ├── MinifyPlugin.jsdoc ├── index.js └── utils.js └── tests ├── banner.js ├── cli.js ├── fixtures ├── asyncGenerators.js ├── chunks.js ├── cli │ ├── 139-correctly-generated-asset │ │ ├── config.js │ │ ├── expected │ │ │ ├── assets │ │ │ │ └── asset-cc117f4a.js │ │ │ ├── index.js │ │ │ └── index.js.map │ │ └── index.js │ ├── 139-multiple-chunks-dynamic-import │ │ ├── Test.js │ │ ├── another.js │ │ ├── chunks.js │ │ ├── config.js │ │ └── expected │ │ │ ├── chunk-generated.js │ │ │ ├── chunk-generated.js.map │ │ │ ├── chunks.js │ │ │ └── chunks.js.map │ ├── 139-multiple-chunks-multiple-inputs │ │ ├── Test.js │ │ ├── another.js │ │ ├── config.js │ │ └── expected │ │ │ ├── Test.js │ │ │ ├── Test.js.map │ │ │ ├── another.js │ │ │ └── another.js.map │ ├── 146-banner-inherited-not-outputted-twice │ │ ├── config.js │ │ ├── expected │ │ │ ├── bundle.js │ │ │ └── bundle.js.map │ │ └── index.js │ ├── additional-plugin-by-import │ │ ├── config.js │ │ ├── expected │ │ │ ├── bundle.js │ │ │ └── bundle.js.map │ │ └── index.js │ ├── additional-plugin-by-name │ │ ├── config.js │ │ ├── expected │ │ │ ├── bundle.js │ │ │ └── bundle.js.map │ │ └── index.js │ ├── banner-inherited │ │ ├── config.js │ │ ├── expected │ │ │ ├── bundle.js │ │ │ └── bundle.js.map │ │ └── index.js │ ├── comments-false-and-banner │ │ ├── config.js │ │ ├── expected │ │ │ ├── bundle.js │ │ │ └── bundle.js.map │ │ └── index.js │ └── default-settings │ │ ├── config.js │ │ ├── expected │ │ ├── bundle.js │ │ └── bundle.js.map │ │ └── index.js ├── empty.js ├── index.js ├── sourcemap.js └── withoutCommentAtStart.js ├── helpers ├── createTransformTest.js ├── emitAssetPlugin.js ├── executeRollupCmd.js ├── getPackageInfo.js ├── runCLITests.js └── validateBannerNewLineSourceMap.js ├── index.js ├── sourcemap.js └── utils.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@comandeer/eslint-config" 3 | } 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.js eol=lf 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Fixes # 2 | 3 | Description of proposed changes: 4 | 5 | - 6 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/.gitignore -------------------------------------------------------------------------------- /.huskyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/.huskyrc -------------------------------------------------------------------------------- /.jsdocrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/.jsdocrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/README.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/MinifyOptions.jsdoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/MinifyOptions.jsdoc.html -------------------------------------------------------------------------------- /docs/MinifyPlugin.jsdoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/MinifyPlugin.jsdoc.html -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/fonts/OpenSans-Bold-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-BoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/fonts/OpenSans-BoldItalic-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-BoldItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/fonts/OpenSans-BoldItalic-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-BoldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/fonts/OpenSans-BoldItalic-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/fonts/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Italic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/fonts/OpenSans-Italic-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/fonts/OpenSans-Italic-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/fonts/OpenSans-Light-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/fonts/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-LightItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/fonts/OpenSans-LightItalic-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-LightItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/fonts/OpenSans-LightItalic-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-LightItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/fonts/OpenSans-LightItalic-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/fonts/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/fonts/OpenSans-Regular-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/fonts/OpenSans-Regular-webfont.woff -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/index.js.html -------------------------------------------------------------------------------- /docs/module-rollup-plugin-babel-minify.MinifyOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/module-rollup-plugin-babel-minify.MinifyOptions.html -------------------------------------------------------------------------------- /docs/module-rollup-plugin-babel-minify.MinifyPlugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/module-rollup-plugin-babel-minify.MinifyPlugin.html -------------------------------------------------------------------------------- /docs/module-rollup-plugin-babel-minify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/module-rollup-plugin-babel-minify.html -------------------------------------------------------------------------------- /docs/scripts/linenumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/scripts/linenumber.js -------------------------------------------------------------------------------- /docs/scripts/prettify/Apache-License-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/scripts/prettify/Apache-License-2.0.txt -------------------------------------------------------------------------------- /docs/scripts/prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/scripts/prettify/lang-css.js -------------------------------------------------------------------------------- /docs/scripts/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/scripts/prettify/prettify.js -------------------------------------------------------------------------------- /docs/styles/jsdoc-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/styles/jsdoc-default.css -------------------------------------------------------------------------------- /docs/styles/prettify-jsdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/styles/prettify-jsdoc.css -------------------------------------------------------------------------------- /docs/styles/prettify-tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/docs/styles/prettify-tomorrow.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/package.json -------------------------------------------------------------------------------- /src/MinifyOptions.jsdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/src/MinifyOptions.jsdoc -------------------------------------------------------------------------------- /src/MinifyPlugin.jsdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/src/MinifyPlugin.jsdoc -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/src/utils.js -------------------------------------------------------------------------------- /tests/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/banner.js -------------------------------------------------------------------------------- /tests/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/cli.js -------------------------------------------------------------------------------- /tests/fixtures/asyncGenerators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/asyncGenerators.js -------------------------------------------------------------------------------- /tests/fixtures/chunks.js: -------------------------------------------------------------------------------- 1 | import( './index.js' ).then( () => {} ); 2 | -------------------------------------------------------------------------------- /tests/fixtures/cli/139-correctly-generated-asset/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/139-correctly-generated-asset/config.js -------------------------------------------------------------------------------- /tests/fixtures/cli/139-correctly-generated-asset/expected/assets/asset-cc117f4a.js: -------------------------------------------------------------------------------- 1 | I am an asset. -------------------------------------------------------------------------------- /tests/fixtures/cli/139-correctly-generated-asset/expected/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/139-correctly-generated-asset/expected/index.js -------------------------------------------------------------------------------- /tests/fixtures/cli/139-correctly-generated-asset/expected/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/139-correctly-generated-asset/expected/index.js.map -------------------------------------------------------------------------------- /tests/fixtures/cli/139-correctly-generated-asset/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/139-correctly-generated-asset/index.js -------------------------------------------------------------------------------- /tests/fixtures/cli/139-multiple-chunks-dynamic-import/Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/139-multiple-chunks-dynamic-import/Test.js -------------------------------------------------------------------------------- /tests/fixtures/cli/139-multiple-chunks-dynamic-import/another.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/139-multiple-chunks-dynamic-import/another.js -------------------------------------------------------------------------------- /tests/fixtures/cli/139-multiple-chunks-dynamic-import/chunks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/139-multiple-chunks-dynamic-import/chunks.js -------------------------------------------------------------------------------- /tests/fixtures/cli/139-multiple-chunks-dynamic-import/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/139-multiple-chunks-dynamic-import/config.js -------------------------------------------------------------------------------- /tests/fixtures/cli/139-multiple-chunks-dynamic-import/expected/chunk-generated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/139-multiple-chunks-dynamic-import/expected/chunk-generated.js -------------------------------------------------------------------------------- /tests/fixtures/cli/139-multiple-chunks-dynamic-import/expected/chunk-generated.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/139-multiple-chunks-dynamic-import/expected/chunk-generated.js.map -------------------------------------------------------------------------------- /tests/fixtures/cli/139-multiple-chunks-dynamic-import/expected/chunks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/139-multiple-chunks-dynamic-import/expected/chunks.js -------------------------------------------------------------------------------- /tests/fixtures/cli/139-multiple-chunks-dynamic-import/expected/chunks.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/139-multiple-chunks-dynamic-import/expected/chunks.js.map -------------------------------------------------------------------------------- /tests/fixtures/cli/139-multiple-chunks-multiple-inputs/Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/139-multiple-chunks-multiple-inputs/Test.js -------------------------------------------------------------------------------- /tests/fixtures/cli/139-multiple-chunks-multiple-inputs/another.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/139-multiple-chunks-multiple-inputs/another.js -------------------------------------------------------------------------------- /tests/fixtures/cli/139-multiple-chunks-multiple-inputs/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/139-multiple-chunks-multiple-inputs/config.js -------------------------------------------------------------------------------- /tests/fixtures/cli/139-multiple-chunks-multiple-inputs/expected/Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/139-multiple-chunks-multiple-inputs/expected/Test.js -------------------------------------------------------------------------------- /tests/fixtures/cli/139-multiple-chunks-multiple-inputs/expected/Test.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/139-multiple-chunks-multiple-inputs/expected/Test.js.map -------------------------------------------------------------------------------- /tests/fixtures/cli/139-multiple-chunks-multiple-inputs/expected/another.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/139-multiple-chunks-multiple-inputs/expected/another.js -------------------------------------------------------------------------------- /tests/fixtures/cli/139-multiple-chunks-multiple-inputs/expected/another.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/139-multiple-chunks-multiple-inputs/expected/another.js.map -------------------------------------------------------------------------------- /tests/fixtures/cli/146-banner-inherited-not-outputted-twice/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/146-banner-inherited-not-outputted-twice/config.js -------------------------------------------------------------------------------- /tests/fixtures/cli/146-banner-inherited-not-outputted-twice/expected/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/146-banner-inherited-not-outputted-twice/expected/bundle.js -------------------------------------------------------------------------------- /tests/fixtures/cli/146-banner-inherited-not-outputted-twice/expected/bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/146-banner-inherited-not-outputted-twice/expected/bundle.js.map -------------------------------------------------------------------------------- /tests/fixtures/cli/146-banner-inherited-not-outputted-twice/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/146-banner-inherited-not-outputted-twice/index.js -------------------------------------------------------------------------------- /tests/fixtures/cli/additional-plugin-by-import/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/additional-plugin-by-import/config.js -------------------------------------------------------------------------------- /tests/fixtures/cli/additional-plugin-by-import/expected/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/additional-plugin-by-import/expected/bundle.js -------------------------------------------------------------------------------- /tests/fixtures/cli/additional-plugin-by-import/expected/bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/additional-plugin-by-import/expected/bundle.js.map -------------------------------------------------------------------------------- /tests/fixtures/cli/additional-plugin-by-import/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/additional-plugin-by-import/index.js -------------------------------------------------------------------------------- /tests/fixtures/cli/additional-plugin-by-name/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/additional-plugin-by-name/config.js -------------------------------------------------------------------------------- /tests/fixtures/cli/additional-plugin-by-name/expected/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/additional-plugin-by-name/expected/bundle.js -------------------------------------------------------------------------------- /tests/fixtures/cli/additional-plugin-by-name/expected/bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/additional-plugin-by-name/expected/bundle.js.map -------------------------------------------------------------------------------- /tests/fixtures/cli/additional-plugin-by-name/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/additional-plugin-by-name/index.js -------------------------------------------------------------------------------- /tests/fixtures/cli/banner-inherited/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/banner-inherited/config.js -------------------------------------------------------------------------------- /tests/fixtures/cli/banner-inherited/expected/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/banner-inherited/expected/bundle.js -------------------------------------------------------------------------------- /tests/fixtures/cli/banner-inherited/expected/bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/banner-inherited/expected/bundle.js.map -------------------------------------------------------------------------------- /tests/fixtures/cli/banner-inherited/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/banner-inherited/index.js -------------------------------------------------------------------------------- /tests/fixtures/cli/comments-false-and-banner/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/comments-false-and-banner/config.js -------------------------------------------------------------------------------- /tests/fixtures/cli/comments-false-and-banner/expected/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/comments-false-and-banner/expected/bundle.js -------------------------------------------------------------------------------- /tests/fixtures/cli/comments-false-and-banner/expected/bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/comments-false-and-banner/expected/bundle.js.map -------------------------------------------------------------------------------- /tests/fixtures/cli/comments-false-and-banner/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/comments-false-and-banner/index.js -------------------------------------------------------------------------------- /tests/fixtures/cli/default-settings/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/default-settings/config.js -------------------------------------------------------------------------------- /tests/fixtures/cli/default-settings/expected/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/default-settings/expected/bundle.js -------------------------------------------------------------------------------- /tests/fixtures/cli/default-settings/expected/bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/default-settings/expected/bundle.js.map -------------------------------------------------------------------------------- /tests/fixtures/cli/default-settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/cli/default-settings/index.js -------------------------------------------------------------------------------- /tests/fixtures/empty.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/index.js -------------------------------------------------------------------------------- /tests/fixtures/sourcemap.js: -------------------------------------------------------------------------------- 1 | console.log( '42' ); 2 | -------------------------------------------------------------------------------- /tests/fixtures/withoutCommentAtStart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/fixtures/withoutCommentAtStart.js -------------------------------------------------------------------------------- /tests/helpers/createTransformTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/helpers/createTransformTest.js -------------------------------------------------------------------------------- /tests/helpers/emitAssetPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/helpers/emitAssetPlugin.js -------------------------------------------------------------------------------- /tests/helpers/executeRollupCmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/helpers/executeRollupCmd.js -------------------------------------------------------------------------------- /tests/helpers/getPackageInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/helpers/getPackageInfo.js -------------------------------------------------------------------------------- /tests/helpers/runCLITests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/helpers/runCLITests.js -------------------------------------------------------------------------------- /tests/helpers/validateBannerNewLineSourceMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/helpers/validateBannerNewLineSourceMap.js -------------------------------------------------------------------------------- /tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/index.js -------------------------------------------------------------------------------- /tests/sourcemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/sourcemap.js -------------------------------------------------------------------------------- /tests/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comandeer/rollup-plugin-babel-minify/HEAD/tests/utils.js --------------------------------------------------------------------------------