c12 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -133,7 +133,7 @@ async function loadConfig(opts) {
|
|
|
133
133
|
const baseLayers = [
|
|
134
134
|
opts.overrides && { config: opts.overrides, configFile: void 0, cwd: void 0 },
|
|
135
135
|
{ config, configFile: opts.configFile, cwd: opts.cwd },
|
|
136
|
-
opts.rcFile && { config: configRC, configFile:
|
|
136
|
+
opts.rcFile && { config: configRC, configFile: void 0 }
|
|
137
137
|
].filter((l) => l && l.config && Object.keys(l.config).length);
|
|
138
138
|
if (opts.extend) {
|
|
139
139
|
await extendConfig(r.config, opts);
|
package/dist/index.mjs
CHANGED
|
@@ -109,7 +109,7 @@ async function loadConfig(opts) {
|
|
|
109
109
|
const baseLayers = [
|
|
110
110
|
opts.overrides && { config: opts.overrides, configFile: void 0, cwd: void 0 },
|
|
111
111
|
{ config, configFile: opts.configFile, cwd: opts.cwd },
|
|
112
|
-
opts.rcFile && { config: configRC, configFile:
|
|
112
|
+
opts.rcFile && { config: configRC, configFile: void 0 }
|
|
113
113
|
].filter((l) => l && l.config && Object.keys(l.config).length);
|
|
114
114
|
if (opts.extend) {
|
|
115
115
|
await extendConfig(r.config, opts);
|