@powerlines/engine 0.45.0 → 0.45.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/_internal/worker.cjs +3 -1
- package/dist/_internal/worker.mjs +3 -1
- package/dist/_internal/worker.mjs.map +1 -1
- package/dist/api.cjs +1 -1
- package/dist/api.mjs +1 -1
- package/dist/context/index.cjs +1 -1
- package/dist/context/index.d.cts +1 -1
- package/dist/context/index.d.cts.map +1 -1
- package/dist/context/index.d.mts +1 -1
- package/dist/context/index.d.mts.map +1 -1
- package/dist/context/index.mjs +1 -1
- package/dist/{execution-context-Cr_VUBrP.mjs → execution-context-O6eXdsCn.mjs} +4 -2
- package/dist/execution-context-O6eXdsCn.mjs.map +1 -0
- package/dist/{execution-context-BFCOc0mH.cjs → execution-context-SXtPe9Ae.cjs} +3 -1
- package/package.json +3 -3
- package/dist/execution-context-Cr_VUBrP.mjs.map +0 -1
|
@@ -3214,6 +3214,8 @@ var PowerlinesContext = class PowerlinesContext extends PowerlinesBaseContext {
|
|
|
3214
3214
|
...this.initialOptions,
|
|
3215
3215
|
...initialConfig,
|
|
3216
3216
|
...userConfig,
|
|
3217
|
+
inlineConfig: {},
|
|
3218
|
+
pluginConfig: {},
|
|
3217
3219
|
initialConfig,
|
|
3218
3220
|
userConfig
|
|
3219
3221
|
};
|
|
@@ -3260,7 +3262,7 @@ var PowerlinesContext = class PowerlinesContext extends PowerlinesBaseContext {
|
|
|
3260
3262
|
}
|
|
3261
3263
|
if (!this.config.userConfig?.projectType && !this.config.inlineConfig?.projectType && !this.config.initialConfig?.projectType && !this.config.pluginConfig?.projectType) this.config.projectType = "application";
|
|
3262
3264
|
if (!this.config.userConfig?.platform && !this.config.inlineConfig?.platform && !this.config.initialConfig?.platform && !this.config.pluginConfig?.platform) this.config.platform = "neutral";
|
|
3263
|
-
this.
|
|
3265
|
+
this.config.compatibilityDate = (0, compatx.resolveCompatibilityDates)(this.config.inlineConfig.compatibilityDate ?? this.config.userConfig.compatibilityDate ?? this.config.initialConfig.compatibilityDate ?? this.config.pluginConfig.compatibilityDate, "latest");
|
|
3264
3266
|
this.config.input = (0, _powerlines_core_lib_entry.getUniqueInputs)(this.config.input);
|
|
3265
3267
|
if (this.config.name?.startsWith("@") && this.config.name.split("/").filter(Boolean).length > 1) this.config.name = this.config.name.split("/").filter(Boolean)[1];
|
|
3266
3268
|
this.config.title ??= (0, _stryke_string_format_title_case.titleCase)(this.config.name);
|
|
@@ -3181,6 +3181,8 @@ var PowerlinesContext = class PowerlinesContext extends PowerlinesBaseContext {
|
|
|
3181
3181
|
...this.initialOptions,
|
|
3182
3182
|
...initialConfig,
|
|
3183
3183
|
...userConfig,
|
|
3184
|
+
inlineConfig: {},
|
|
3185
|
+
pluginConfig: {},
|
|
3184
3186
|
initialConfig,
|
|
3185
3187
|
userConfig
|
|
3186
3188
|
};
|
|
@@ -3227,7 +3229,7 @@ var PowerlinesContext = class PowerlinesContext extends PowerlinesBaseContext {
|
|
|
3227
3229
|
}
|
|
3228
3230
|
if (!this.config.userConfig?.projectType && !this.config.inlineConfig?.projectType && !this.config.initialConfig?.projectType && !this.config.pluginConfig?.projectType) this.config.projectType = "application";
|
|
3229
3231
|
if (!this.config.userConfig?.platform && !this.config.inlineConfig?.platform && !this.config.initialConfig?.platform && !this.config.pluginConfig?.platform) this.config.platform = "neutral";
|
|
3230
|
-
this.
|
|
3232
|
+
this.config.compatibilityDate = resolveCompatibilityDates(this.config.inlineConfig.compatibilityDate ?? this.config.userConfig.compatibilityDate ?? this.config.initialConfig.compatibilityDate ?? this.config.pluginConfig.compatibilityDate, "latest");
|
|
3231
3233
|
this.config.input = getUniqueInputs(this.config.input);
|
|
3232
3234
|
if (this.config.name?.startsWith("@") && this.config.name.split("/").filter(Boolean).length > 1) this.config.name = this.config.name.split("/").filter(Boolean)[1];
|
|
3233
3235
|
this.config.title ??= titleCase(this.config.name);
|