@storm-software/testing-tools 1.14.0 → 1.15.0

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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [1.14.0](https://github.com/storm-software/storm-ops/compare/testing-tools-v1.13.1...testing-tools-v1.14.0) (2023-12-12)
2
+
3
+
4
+ ### Features
5
+
6
+ * **workspace-tools:** Added the `packageAll` option to build nested package files ([cf18588](https://github.com/storm-software/storm-ops/commit/cf18588e55e491f984affecd040c95298f0cf273))
7
+
1
8
  ## [1.13.1](https://github.com/storm-software/storm-ops/compare/testing-tools-v1.13.0...testing-tools-v1.13.1) (2023-12-11)
2
9
 
3
10
 
package/index.cjs CHANGED
@@ -140712,9 +140712,9 @@ var require_supports_color3 = __commonJS({
140712
140712
  }
140713
140713
  });
140714
140714
 
140715
- // node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/util.js
140715
+ // node_modules/.pnpm/chalk@4.1.0/node_modules/chalk/source/util.js
140716
140716
  var require_util2 = __commonJS({
140717
- "node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/util.js"(exports, module2) {
140717
+ "node_modules/.pnpm/chalk@4.1.0/node_modules/chalk/source/util.js"(exports, module2) {
140718
140718
  "use strict";
140719
140719
  var stringReplaceAll3 = (string, substring, replacer) => {
140720
140720
  let index = string.indexOf(substring);
@@ -140751,9 +140751,9 @@ var require_util2 = __commonJS({
140751
140751
  }
140752
140752
  });
140753
140753
 
140754
- // node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/templates.js
140754
+ // node_modules/.pnpm/chalk@4.1.0/node_modules/chalk/source/templates.js
140755
140755
  var require_templates3 = __commonJS({
140756
- "node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/templates.js"(exports, module2) {
140756
+ "node_modules/.pnpm/chalk@4.1.0/node_modules/chalk/source/templates.js"(exports, module2) {
140757
140757
  "use strict";
140758
140758
  var TEMPLATE_REGEX = /(?:\\(u(?:[a-f\d]{4}|\{[a-f\d]{1,6}\})|x[a-f\d]{2}|.))|(?:\{(~)?(\w+(?:\([^)]*\))?(?:\.\w+(?:\([^)]*\))?)*)(?:[ \t]|(?=\r?\n)))|(\})|((?:.|[\r\n\f])+?)/gi;
140759
140759
  var STYLE_REGEX = /(?:^|\.)(\w+)(?:\(([^)]*)\))?/g;
@@ -140865,9 +140865,9 @@ var require_templates3 = __commonJS({
140865
140865
  }
140866
140866
  });
140867
140867
 
140868
- // node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/index.js
140868
+ // node_modules/.pnpm/chalk@4.1.0/node_modules/chalk/source/index.js
140869
140869
  var require_source = __commonJS({
140870
- "node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/index.js"(exports, module2) {
140870
+ "node_modules/.pnpm/chalk@4.1.0/node_modules/chalk/source/index.js"(exports, module2) {
140871
140871
  "use strict";
140872
140872
  var ansiStyles2 = require_ansi_styles3();
140873
140873
  var { stdout: stdoutColor2, stderr: stderrColor2 } = require_supports_color3();
@@ -332003,37 +332003,6 @@ var require_ensure = __commonJS({
332003
332003
  }
332004
332004
  });
332005
332005
 
332006
- // node_modules/.pnpm/universalify@2.0.0/node_modules/universalify/index.js
332007
- var require_universalify2 = __commonJS({
332008
- "node_modules/.pnpm/universalify@2.0.0/node_modules/universalify/index.js"(exports) {
332009
- "use strict";
332010
- exports.fromCallback = function(fn6) {
332011
- return Object.defineProperty(function(...args) {
332012
- if (typeof args[args.length - 1] === "function")
332013
- fn6.apply(this, args);
332014
- else {
332015
- return new Promise((resolve2, reject) => {
332016
- fn6.call(
332017
- this,
332018
- ...args,
332019
- (err, res) => err != null ? reject(err) : resolve2(res)
332020
- );
332021
- });
332022
- }
332023
- }, "name", { value: fn6.name });
332024
- };
332025
- exports.fromPromise = function(fn6) {
332026
- return Object.defineProperty(function(...args) {
332027
- const cb = args[args.length - 1];
332028
- if (typeof cb !== "function")
332029
- return fn6.apply(this, args);
332030
- else
332031
- fn6.apply(this, args.slice(0, -1)).then((r3) => cb(null, r3), cb);
332032
- }, "name", { value: fn6.name });
332033
- };
332034
- }
332035
- });
332036
-
332037
332006
  // node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile/utils.js
332038
332007
  var require_utils7 = __commonJS({
332039
332008
  "node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile/utils.js"(exports, module2) {
@@ -332062,7 +332031,7 @@ var require_jsonfile = __commonJS({
332062
332031
  } catch (_6) {
332063
332032
  _fs = require("fs");
332064
332033
  }
332065
- var universalify = require_universalify2();
332034
+ var universalify = require_universalify();
332066
332035
  var { stringify, stripBom } = require_utils7();
332067
332036
  async function _readFile(file, options8 = {}) {
332068
332037
  if (typeof options8 === "string") {
package/index.js CHANGED
@@ -140716,9 +140716,9 @@ var require_supports_color3 = __commonJS({
140716
140716
  }
140717
140717
  });
140718
140718
 
140719
- // node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/util.js
140719
+ // node_modules/.pnpm/chalk@4.1.0/node_modules/chalk/source/util.js
140720
140720
  var require_util2 = __commonJS({
140721
- "node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/util.js"(exports, module) {
140721
+ "node_modules/.pnpm/chalk@4.1.0/node_modules/chalk/source/util.js"(exports, module) {
140722
140722
  "use strict";
140723
140723
  var stringReplaceAll3 = (string, substring, replacer) => {
140724
140724
  let index = string.indexOf(substring);
@@ -140755,9 +140755,9 @@ var require_util2 = __commonJS({
140755
140755
  }
140756
140756
  });
140757
140757
 
140758
- // node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/templates.js
140758
+ // node_modules/.pnpm/chalk@4.1.0/node_modules/chalk/source/templates.js
140759
140759
  var require_templates3 = __commonJS({
140760
- "node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/templates.js"(exports, module) {
140760
+ "node_modules/.pnpm/chalk@4.1.0/node_modules/chalk/source/templates.js"(exports, module) {
140761
140761
  "use strict";
140762
140762
  var TEMPLATE_REGEX = /(?:\\(u(?:[a-f\d]{4}|\{[a-f\d]{1,6}\})|x[a-f\d]{2}|.))|(?:\{(~)?(\w+(?:\([^)]*\))?(?:\.\w+(?:\([^)]*\))?)*)(?:[ \t]|(?=\r?\n)))|(\})|((?:.|[\r\n\f])+?)/gi;
140763
140763
  var STYLE_REGEX = /(?:^|\.)(\w+)(?:\(([^)]*)\))?/g;
@@ -140869,9 +140869,9 @@ var require_templates3 = __commonJS({
140869
140869
  }
140870
140870
  });
140871
140871
 
140872
- // node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/index.js
140872
+ // node_modules/.pnpm/chalk@4.1.0/node_modules/chalk/source/index.js
140873
140873
  var require_source = __commonJS({
140874
- "node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/index.js"(exports, module) {
140874
+ "node_modules/.pnpm/chalk@4.1.0/node_modules/chalk/source/index.js"(exports, module) {
140875
140875
  "use strict";
140876
140876
  var ansiStyles2 = require_ansi_styles3();
140877
140877
  var { stdout: stdoutColor2, stderr: stderrColor2 } = require_supports_color3();
@@ -332007,37 +332007,6 @@ var require_ensure = __commonJS({
332007
332007
  }
332008
332008
  });
332009
332009
 
332010
- // node_modules/.pnpm/universalify@2.0.0/node_modules/universalify/index.js
332011
- var require_universalify2 = __commonJS({
332012
- "node_modules/.pnpm/universalify@2.0.0/node_modules/universalify/index.js"(exports) {
332013
- "use strict";
332014
- exports.fromCallback = function(fn6) {
332015
- return Object.defineProperty(function(...args) {
332016
- if (typeof args[args.length - 1] === "function")
332017
- fn6.apply(this, args);
332018
- else {
332019
- return new Promise((resolve2, reject) => {
332020
- fn6.call(
332021
- this,
332022
- ...args,
332023
- (err, res) => err != null ? reject(err) : resolve2(res)
332024
- );
332025
- });
332026
- }
332027
- }, "name", { value: fn6.name });
332028
- };
332029
- exports.fromPromise = function(fn6) {
332030
- return Object.defineProperty(function(...args) {
332031
- const cb = args[args.length - 1];
332032
- if (typeof cb !== "function")
332033
- return fn6.apply(this, args);
332034
- else
332035
- fn6.apply(this, args.slice(0, -1)).then((r3) => cb(null, r3), cb);
332036
- }, "name", { value: fn6.name });
332037
- };
332038
- }
332039
- });
332040
-
332041
332010
  // node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile/utils.js
332042
332011
  var require_utils7 = __commonJS({
332043
332012
  "node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile/utils.js"(exports, module) {
@@ -332066,7 +332035,7 @@ var require_jsonfile = __commonJS({
332066
332035
  } catch (_6) {
332067
332036
  _fs = __require("fs");
332068
332037
  }
332069
- var universalify = require_universalify2();
332038
+ var universalify = require_universalify();
332070
332039
  var { stringify, stripBom } = require_utils7();
332071
332040
  async function _readFile(file, options8 = {}) {
332072
332041
  if (typeof options8 === "string") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/testing-tools",
3
- "version": "1.14.0",
3
+ "version": "1.15.0",
4
4
  "private": false,
5
5
  "description": "⚡ A package containing various testing tools used by Storm workspaces to drive unit and e2e testing.",
6
6
  "keywords": [