pure-index
Advanced tools
Comparing version 0.0.9 to 0.0.10
@@ -26,3 +26,2 @@ import { join } from 'node:path' | ||
type: 'string', | ||
default: BASE_CONFIG.entry, | ||
shortFlag: 'e' | ||
@@ -40,3 +39,6 @@ } | ||
if (!result) { | ||
return BASE_CONFIG | ||
return { | ||
...BASE_CONFIG, | ||
entry: cli.flags.entry || BASE_CONFIG.entry | ||
} | ||
} | ||
@@ -48,3 +50,3 @@ | ||
babelPlugins = [], | ||
entry = cli.flags.entry, | ||
entry = BASE_CONFIG.entry, | ||
batch = {} | ||
@@ -57,3 +59,3 @@ } | ||
: { | ||
entry, | ||
entry: cli.flags.entry || entry, | ||
exclude: new Set([...BASE_CONFIG.exclude, ...exclude]), | ||
@@ -60,0 +62,0 @@ babelPlugins: new Set([...BASE_CONFIG.babelPlugins, ...babelPlugins]), |
{ | ||
"name": "pure-index", | ||
"type": "module", | ||
"version": "0.0.9", | ||
"version": "0.0.10", | ||
"description": "some description", | ||
@@ -22,3 +22,3 @@ "main": "./bin/index.js", | ||
"engines": { | ||
"node": ">= 16" | ||
"node": ">= 18" | ||
}, | ||
@@ -25,0 +25,0 @@ "devDependencies": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
14583
350