@mochabug/adaptkit 1.0.0-rc.20 → 1.0.0-rc.21

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.
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAuCA,UAAU,eAAe;IACvB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,YAAY,EAAE,MAAM,CAAC;CACtB;AAED,wBAAsB,2BAA2B,CAC/C,IAAI,EAAE,MAAM,GACX,OAAO,CAAC,eAAe,CAAC,CA0B1B"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAuCA,UAAU,eAAe;IACvB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,YAAY,EAAE,MAAM,CAAC;CACtB;AAED,wBAAsB,2BAA2B,CAC/C,IAAI,EAAE,MAAM,GACX,OAAO,CAAC,eAAe,CAAC,CA8B1B"}
package/bin/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  // <define:__PACKAGE_JSON__>
4
- var define_PACKAGE_JSON_default = { name: "@mochabug/adaptkit", version: "1.0.0-rc.20" };
4
+ var define_PACKAGE_JSON_default = { name: "@mochabug/adaptkit", version: "1.0.0-rc.21" };
5
5
 
6
6
  // node_modules/@bufbuild/protobuf/dist/esm/is-message.js
7
7
  function isMessage(arg, schema) {
@@ -5640,8 +5640,12 @@ async function isValidUrl(urlString) {
5640
5640
  }
5641
5641
  }
5642
5642
  async function readConfiguratorAndExecutor(dist) {
5643
- const configuratorPattern = path5.join(dist, "configurators.{js,cjs}");
5644
- const executorPattern = path5.join(dist, "executors.{js,cjs}");
5643
+ const configuratorPattern = path5.join(
5644
+ dist,
5645
+ "configurators",
5646
+ "configurators.{js,cjs}"
5647
+ );
5648
+ const executorPattern = path5.join(dist, "executors", "executors.{js,cjs}");
5645
5649
  const [configuratorFiles, executorFiles] = await Promise.all([
5646
5650
  fg3([configuratorPattern]),
5647
5651
  fg3([executorPattern])
@@ -5888,7 +5892,7 @@ async function main() {
5888
5892
  "src"
5889
5893
  ).option(
5890
5894
  "--dist <folder>",
5891
- "The dist folder where the actual plugin code is. Searching for: configurator.[js|cjs], executor.[js|cjs]",
5895
+ "The dist folder where the actual plugin code is. Searching for: configurators.[js|cjs] inside a folder called configurators, executor.[js|cjs] inaisde a folder called executors",
5892
5896
  "dist"
5893
5897
  ).option(
5894
5898
  "-a, --authority <authority>",