qfai 0.3.2 → 0.3.3
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/README.md +7 -1
- package/assets/init/.qfai/README.md +2 -0
- package/assets/init/.qfai/prompts/README.md +6 -0
- package/assets/init/.qfai/prompts/require-to-spec.md +39 -0
- package/assets/init/.qfai/rules/pnpm.md +29 -0
- package/assets/init/root/require/README.md +28 -0
- package/dist/cli/index.cjs +20 -3
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.mjs +20 -3
- package/dist/cli/index.mjs.map +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -591,8 +591,8 @@ var import_promises5 = require("fs/promises");
|
|
|
591
591
|
var import_node_path4 = __toESM(require("path"), 1);
|
|
592
592
|
var import_node_url = require("url");
|
|
593
593
|
async function resolveToolVersion() {
|
|
594
|
-
if ("0.3.
|
|
595
|
-
return "0.3.
|
|
594
|
+
if ("0.3.3".length > 0) {
|
|
595
|
+
return "0.3.3";
|
|
596
596
|
}
|
|
597
597
|
try {
|
|
598
598
|
const packagePath = resolvePackageJsonPath();
|
package/dist/index.mjs
CHANGED
|
@@ -534,8 +534,8 @@ import { readFile as readFile2 } from "fs/promises";
|
|
|
534
534
|
import path4 from "path";
|
|
535
535
|
import { fileURLToPath } from "url";
|
|
536
536
|
async function resolveToolVersion() {
|
|
537
|
-
if ("0.3.
|
|
538
|
-
return "0.3.
|
|
537
|
+
if ("0.3.3".length > 0) {
|
|
538
|
+
return "0.3.3";
|
|
539
539
|
}
|
|
540
540
|
try {
|
|
541
541
|
const packagePath = resolvePackageJsonPath();
|