@powerlines/plugin-unbuild 0.5.71 → 0.5.72
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.
|
@@ -128,6 +128,12 @@ interface BuildConfig {
|
|
|
128
128
|
* Should the Powerlines CLI processes skip bundling the `node_modules` directory?
|
|
129
129
|
*/
|
|
130
130
|
skipNodeModulesBundle?: boolean;
|
|
131
|
+
/**
|
|
132
|
+
* If true, `process.env` referenced in code will be preserved as-is and evaluated in runtime. Otherwise, it is statically replaced as an empty object.
|
|
133
|
+
*
|
|
134
|
+
* @defaultValue false
|
|
135
|
+
*/
|
|
136
|
+
keepProcessEnv?: boolean;
|
|
131
137
|
/**
|
|
132
138
|
* An optional set of override options to apply to the selected build variant.
|
|
133
139
|
*
|
|
@@ -129,6 +129,12 @@ interface BuildConfig {
|
|
|
129
129
|
* Should the Powerlines CLI processes skip bundling the `node_modules` directory?
|
|
130
130
|
*/
|
|
131
131
|
skipNodeModulesBundle?: boolean;
|
|
132
|
+
/**
|
|
133
|
+
* If true, `process.env` referenced in code will be preserved as-is and evaluated in runtime. Otherwise, it is statically replaced as an empty object.
|
|
134
|
+
*
|
|
135
|
+
* @defaultValue false
|
|
136
|
+
*/
|
|
137
|
+
keepProcessEnv?: boolean;
|
|
132
138
|
/**
|
|
133
139
|
* An optional set of override options to apply to the selected build variant.
|
|
134
140
|
*
|
|
@@ -300,6 +300,18 @@ interface CommonUserConfig extends BaseConfig {
|
|
|
300
300
|
* Environment-specific configurations
|
|
301
301
|
*/
|
|
302
302
|
environments?: Record<string, EnvironmentConfig>;
|
|
303
|
+
/**
|
|
304
|
+
* Should a single `build` process be ran for each environment?
|
|
305
|
+
*
|
|
306
|
+
* @remarks
|
|
307
|
+
* This option determines how environments are managed during the `build` process. The available options are:
|
|
308
|
+
*
|
|
309
|
+
* - `false`: A separate build is ran for each environment.
|
|
310
|
+
* - `true`: A single build is ran for all environments.
|
|
311
|
+
*
|
|
312
|
+
* @defaultValue false
|
|
313
|
+
*/
|
|
314
|
+
singleBuild?: boolean;
|
|
303
315
|
/**
|
|
304
316
|
* A string identifier that allows a child framework or tool to identify itself when using Powerlines.
|
|
305
317
|
*
|
|
@@ -300,6 +300,18 @@ interface CommonUserConfig extends BaseConfig {
|
|
|
300
300
|
* Environment-specific configurations
|
|
301
301
|
*/
|
|
302
302
|
environments?: Record<string, EnvironmentConfig>;
|
|
303
|
+
/**
|
|
304
|
+
* Should a single `build` process be ran for each environment?
|
|
305
|
+
*
|
|
306
|
+
* @remarks
|
|
307
|
+
* This option determines how environments are managed during the `build` process. The available options are:
|
|
308
|
+
*
|
|
309
|
+
* - `false`: A separate build is ran for each environment.
|
|
310
|
+
* - `true`: A single build is ran for all environments.
|
|
311
|
+
*
|
|
312
|
+
* @defaultValue false
|
|
313
|
+
*/
|
|
314
|
+
singleBuild?: boolean;
|
|
303
315
|
/**
|
|
304
316
|
* A string identifier that allows a child framework or tool to identify itself when using Powerlines.
|
|
305
317
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-unbuild",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.72",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin to build projects using Unbuild.",
|
|
6
6
|
"repository": {
|
|
@@ -145,21 +145,21 @@
|
|
|
145
145
|
"files": ["dist/**/*"],
|
|
146
146
|
"keywords": ["unbuild", "powerlines", "storm-software", "powerlines-plugin"],
|
|
147
147
|
"dependencies": {
|
|
148
|
-
"@storm-software/unbuild": "^0.57.
|
|
148
|
+
"@storm-software/unbuild": "^0.57.65",
|
|
149
149
|
"@stryke/fs": "^0.33.20",
|
|
150
150
|
"@stryke/path": "^0.22.11",
|
|
151
151
|
"@stryke/type-checks": "^0.5.9",
|
|
152
152
|
"@stryke/types": "^0.10.23",
|
|
153
153
|
"defu": "^6.1.4",
|
|
154
154
|
"jiti": "^2.6.1",
|
|
155
|
-
"powerlines": "^0.
|
|
155
|
+
"powerlines": "^0.31.0",
|
|
156
156
|
"unplugin": "3.0.0-beta.3"
|
|
157
157
|
},
|
|
158
158
|
"devDependencies": {
|
|
159
|
-
"@powerlines/nx": "^0.10.
|
|
160
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
161
|
-
"@types/node": "^24.10.
|
|
159
|
+
"@powerlines/nx": "^0.10.63",
|
|
160
|
+
"@powerlines/plugin-plugin": "^0.12.15",
|
|
161
|
+
"@types/node": "^24.10.2"
|
|
162
162
|
},
|
|
163
163
|
"publishConfig": { "access": "public" },
|
|
164
|
-
"gitHead": "
|
|
164
|
+
"gitHead": "2a4c29a361c5702474c60ee5f06a3e4e87d23c35"
|
|
165
165
|
}
|