@omnia/tooling-composers 8.0.99-vnext → 8.0.101-vnext
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.
|
@@ -149,6 +149,16 @@ function build(scanFolders, cleanOutputBeforeBuild) {
|
|
|
149
149
|
if (!DevelopmentBuildConfiguration_1.DevelopmentBuildConfiguration.isEnableBuild) {
|
|
150
150
|
resolve();
|
|
151
151
|
}
|
|
152
|
+
else if (process.argv.length > 0
|
|
153
|
+
&& process.argv.find(argv => argv === "--package") !== undefined) {
|
|
154
|
+
cleanOutput = false;
|
|
155
|
+
afterScanManifest()
|
|
156
|
+
.then(beforeBundleManifest, chainError)
|
|
157
|
+
.then(resolve, reject)
|
|
158
|
+
.catch((err) => {
|
|
159
|
+
reject(err);
|
|
160
|
+
});
|
|
161
|
+
}
|
|
152
162
|
else if (process.argv.length > 0
|
|
153
163
|
&& process.argv.find(argv => argv === "--manifestOnly") !== undefined
|
|
154
164
|
&& (process.argv.find(argv => argv === "--force") !== undefined
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnia/tooling-composers",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "8.0.
|
|
4
|
+
"version": "8.0.101-vnext",
|
|
5
5
|
"description": "Provide tooling to work with manifest things.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
],
|
|
20
20
|
"author": "Precio Fishbone",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@omnia/fx-models": "8.0.
|
|
23
|
-
"@omnia/tooling": "8.0.
|
|
22
|
+
"@omnia/fx-models": "8.0.101-vnext",
|
|
23
|
+
"@omnia/tooling": "8.0.101-vnext",
|
|
24
24
|
"deep-extend": "0.6.0",
|
|
25
25
|
"fs-extra": "11.1.0",
|
|
26
26
|
"del": "6.0.0",
|