We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1a6eea commit 0dbe73fCopy full SHA for 0dbe73f
src/cli.ts
@@ -41,6 +41,7 @@ cli
41
.option('-t, --target <target>', 'Output target', { default: 'node' })
42
.option('-c, --config <file>', 'Use a custom config file')
43
.option('--minimal', 'Generate minimal output whenever possible')
44
+ .option('--no-babelrc', 'Disable .babelrc file')
45
.option('--banner', 'Add banner with pkg info to the bundle')
46
.option(
47
'--no-map',
@@ -79,7 +80,8 @@ cli
79
80
banner: options.banner,
81
babel: {
82
asyncToPromises: options.asyncToPromises,
- minimal: options.minimal
83
+ minimal: options.minimal,
84
+ babelrc: options.babelrc
85
}
86
},
87
{
0 commit comments