qfai 0.6.3 → 0.7.1
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 +13 -2
- package/assets/init/.qfai/README.md +9 -1
- package/assets/init/.qfai/prompts/README.md +10 -0
- package/assets/init/.qfai/prompts.local/README.md +25 -0
- package/dist/cli/index.cjs +35 -6
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.mjs +35 -6
- 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
|
@@ -1232,8 +1232,8 @@ var import_promises7 = require("fs/promises");
|
|
|
1232
1232
|
var import_node_path7 = __toESM(require("path"), 1);
|
|
1233
1233
|
var import_node_url = require("url");
|
|
1234
1234
|
async function resolveToolVersion() {
|
|
1235
|
-
if ("0.
|
|
1236
|
-
return "0.
|
|
1235
|
+
if ("0.7.1".length > 0) {
|
|
1236
|
+
return "0.7.1";
|
|
1237
1237
|
}
|
|
1238
1238
|
try {
|
|
1239
1239
|
const packagePath = resolvePackageJsonPath();
|
package/dist/index.mjs
CHANGED
|
@@ -1179,8 +1179,8 @@ import { readFile as readFile4 } from "fs/promises";
|
|
|
1179
1179
|
import path7 from "path";
|
|
1180
1180
|
import { fileURLToPath } from "url";
|
|
1181
1181
|
async function resolveToolVersion() {
|
|
1182
|
-
if ("0.
|
|
1183
|
-
return "0.
|
|
1182
|
+
if ("0.7.1".length > 0) {
|
|
1183
|
+
return "0.7.1";
|
|
1184
1184
|
}
|
|
1185
1185
|
try {
|
|
1186
1186
|
const packagePath = resolvePackageJsonPath();
|