@omnia/tooling-composers 8.0.64-dev → 8.0.65-dev

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.
@@ -32,6 +32,11 @@ export interface BuildOptions {
32
32
  * Usage: reference:["omnia.vendor.manifest.json"]
33
33
  */
34
34
  reference?: Array<string>;
35
+ /**
36
+ * Specifies a list prebuild webpack manifests to improve build next time.
37
+ * Usage: reference:["omnia.vendor.manifest.json"]
38
+ */
39
+ webpackManifests?: Array<string>;
35
40
  /**
36
41
  * Prevent webpack from parsing any files matching the given regular expression(s).
37
42
  * Ignored files should not have calls to import, require, define or any other importing mechanism.
@@ -150,7 +150,8 @@ function build(scanFolders, cleanOutputBeforeBuild) {
150
150
  resolve();
151
151
  }
152
152
  else if (process.argv.length > 0
153
- && process.argv.find(argv => argv === "--package") !== undefined) {
153
+ && (process.argv.find(argv => argv === "--package") !== undefined
154
+ || process.argv.find(argv => argv === "--webpackManifest") !== undefined)) {
154
155
  cleanOutput = false;
155
156
  afterScanManifest()
156
157
  .then(beforeBundleManifest, chainError)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/tooling-composers",
3
3
  "license": "MIT",
4
- "version": "8.0.64-dev",
4
+ "version": "8.0.65-dev",
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.64-dev",
23
- "@omnia/tooling": "8.0.64-dev",
22
+ "@omnia/fx-models": "8.0.65-dev",
23
+ "@omnia/tooling": "8.0.65-dev",
24
24
  "deep-extend": "0.6.0",
25
25
  "fs-extra": "11.1.0",
26
26
  "del": "6.0.0",