qfai 1.4.7 → 1.4.8
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 +2 -2
- package/dist/cli/index.cjs +2 -2
- package/dist/cli/index.mjs +2 -2
- package/dist/index.cjs +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
- package/assets/init/root/features/spec-0001.feature +0 -20
package/README.md
CHANGED
|
@@ -207,7 +207,7 @@ flowchart LR
|
|
|
207
207
|
- Contracts SSOT: `.qfai/contracts/**`
|
|
208
208
|
- Report outputs (`.qfai/report/**`) are derived artifacts and not SSOT.
|
|
209
209
|
|
|
210
|
-
## Minimal tutorial (v1.4.
|
|
210
|
+
## Minimal tutorial (v1.4.8)
|
|
211
211
|
|
|
212
212
|
1. `npx qfai init`
|
|
213
213
|
2. Run `/qfai-discuss` to structure scope and open questions.
|
|
@@ -233,7 +233,7 @@ Release gate behavior:
|
|
|
233
233
|
|
|
234
234
|
## Continuous integration
|
|
235
235
|
|
|
236
|
-
QFAI v1.4.
|
|
236
|
+
QFAI v1.4.8 no longer generates `.github/**` assets.
|
|
237
237
|
Configure CI in your own platform and run:
|
|
238
238
|
|
|
239
239
|
```bash
|
package/dist/cli/index.cjs
CHANGED
|
@@ -1218,8 +1218,8 @@ var import_promises7 = require("fs/promises");
|
|
|
1218
1218
|
var import_node_path8 = __toESM(require("path"), 1);
|
|
1219
1219
|
var import_node_url2 = require("url");
|
|
1220
1220
|
async function resolveToolVersion() {
|
|
1221
|
-
if ("1.4.
|
|
1222
|
-
return "1.4.
|
|
1221
|
+
if ("1.4.8".length > 0) {
|
|
1222
|
+
return "1.4.8";
|
|
1223
1223
|
}
|
|
1224
1224
|
try {
|
|
1225
1225
|
const packagePath = resolvePackageJsonPath();
|
package/dist/cli/index.mjs
CHANGED
|
@@ -1199,8 +1199,8 @@ import { readFile as readFile4 } from "fs/promises";
|
|
|
1199
1199
|
import path8 from "path";
|
|
1200
1200
|
import { fileURLToPath as fileURLToPath2 } from "url";
|
|
1201
1201
|
async function resolveToolVersion() {
|
|
1202
|
-
if ("1.4.
|
|
1203
|
-
return "1.4.
|
|
1202
|
+
if ("1.4.8".length > 0) {
|
|
1203
|
+
return "1.4.8";
|
|
1204
1204
|
}
|
|
1205
1205
|
try {
|
|
1206
1206
|
const packagePath = resolvePackageJsonPath();
|
package/dist/index.cjs
CHANGED
|
@@ -2290,8 +2290,8 @@ var import_promises8 = require("fs/promises");
|
|
|
2290
2290
|
var import_node_path8 = __toESM(require("path"), 1);
|
|
2291
2291
|
var import_node_url = require("url");
|
|
2292
2292
|
async function resolveToolVersion() {
|
|
2293
|
-
if ("1.4.
|
|
2294
|
-
return "1.4.
|
|
2293
|
+
if ("1.4.8".length > 0) {
|
|
2294
|
+
return "1.4.8";
|
|
2295
2295
|
}
|
|
2296
2296
|
try {
|
|
2297
2297
|
const packagePath = resolvePackageJsonPath();
|
package/dist/index.mjs
CHANGED
|
@@ -2230,8 +2230,8 @@ import { readFile as readFile5 } from "fs/promises";
|
|
|
2230
2230
|
import path8 from "path";
|
|
2231
2231
|
import { fileURLToPath } from "url";
|
|
2232
2232
|
async function resolveToolVersion() {
|
|
2233
|
-
if ("1.4.
|
|
2234
|
-
return "1.4.
|
|
2233
|
+
if ("1.4.8".length > 0) {
|
|
2234
|
+
return "1.4.8";
|
|
2235
2235
|
}
|
|
2236
2236
|
try {
|
|
2237
2237
|
const packagePath = resolvePackageJsonPath();
|
package/package.json
CHANGED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
@SPEC-0001
|
|
2
|
-
Feature: Traceability references for sample spec pack
|
|
3
|
-
|
|
4
|
-
@SC-0001-0001
|
|
5
|
-
Scenario: Reference SC-0001-0001
|
|
6
|
-
Given a sample acceptance test exists
|
|
7
|
-
When traceability scans feature files
|
|
8
|
-
Then SC-0001-0001 is discoverable
|
|
9
|
-
|
|
10
|
-
@SC-0001-0002
|
|
11
|
-
Scenario: Reference SC-0001-0002
|
|
12
|
-
Given a sample acceptance test exists
|
|
13
|
-
When traceability scans feature files
|
|
14
|
-
Then SC-0001-0002 is discoverable
|
|
15
|
-
|
|
16
|
-
@SC-0001-0003
|
|
17
|
-
Scenario: Reference SC-0001-0003
|
|
18
|
-
Given a sample acceptance test exists
|
|
19
|
-
When traceability scans feature files
|
|
20
|
-
Then SC-0001-0003 is discoverable
|