quality-intelligence-engine 2.2.22 → 2.2.24

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.
Files changed (2) hide show
  1. package/dist/bin/qi.js +3 -3
  2. package/package.json +1 -1
package/dist/bin/qi.js CHANGED
@@ -19,10 +19,10 @@ async function main() {
19
19
  */
20
20
  const projectRoot = path_1.default.resolve(__dirname, "..");
21
21
  /**
22
- * final-run.ts dist/final-run.js
23
- * (this file IS published)
22
+ * ACTUAL compiled location:
23
+ * src/final-run.ts dist/src/final-run.js
24
24
  */
25
- const finalRunPath = path_1.default.join(projectRoot, "final-run.js");
25
+ const finalRunPath = path_1.default.join(projectRoot, "src", "final-run.js");
26
26
  // eslint-disable-next-line @typescript-eslint/no-var-requires
27
27
  const { runFinal } = require(finalRunPath);
28
28
  runFinal(playwrightResultsDir, showIssues);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quality-intelligence-engine",
3
- "version": "2.2.22",
3
+ "version": "2.2.24",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "qi": "dist/bin/qi.js"