@rse/ase 0.9.68 → 0.9.69
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/dst/ase-spec.js
CHANGED
|
@@ -33,11 +33,13 @@ export class Spec {
|
|
|
33
33
|
}
|
|
34
34
|
/* the ASE log level each SpecBook verbosity level maps onto: the
|
|
35
35
|
"none" level carries the messages a bare SpecBook CLI run always
|
|
36
|
-
prints
|
|
37
|
-
|
|
38
|
-
|
|
36
|
+
prints -- the environment notices plus the lifecycle and failure
|
|
37
|
+
reports of the long-running "watch" and "preview" loops, whose
|
|
38
|
+
loss would leave a broken observation entirely unreported -- and
|
|
39
|
+
reaches the info log like the regular and detailed processing
|
|
40
|
+
messages, while the tracing ones reach the debug log */
|
|
39
41
|
static logLevel = {
|
|
40
|
-
none:
|
|
42
|
+
none: "info",
|
|
41
43
|
notice: "info",
|
|
42
44
|
detail: "info",
|
|
43
45
|
trace: "debug"
|
|
@@ -52,9 +54,7 @@ export class Spec {
|
|
|
52
54
|
const text = renderVerbose(msg);
|
|
53
55
|
if (level === "none")
|
|
54
56
|
notices?.push(text);
|
|
55
|
-
|
|
56
|
-
if (logLevel !== null)
|
|
57
|
-
log.write(logLevel, `specbook: ${cmd}: ${text}`);
|
|
57
|
+
log.write(Spec.logLevel[level], `specbook: ${cmd}: ${text}`);
|
|
58
58
|
}
|
|
59
59
|
});
|
|
60
60
|
}
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"homepage": "https://ase.tools",
|
|
7
7
|
"repository": { "url": "git+https://github.com/rse/ase.git", "type": "git" },
|
|
8
8
|
"bugs": { "url": "https://github.com/rse/ase/issues" },
|
|
9
|
-
"version": "0.9.
|
|
9
|
+
"version": "0.9.69",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"author": {
|
|
12
12
|
"name": "Dr. Ralf S. Engelschall",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"nodemon": "3.1.14",
|
|
31
31
|
"shx": "0.4.0",
|
|
32
32
|
|
|
33
|
-
"@types/node": "26.
|
|
33
|
+
"@types/node": "26.5.0",
|
|
34
34
|
"@types/luxon": "3.7.5",
|
|
35
35
|
"@types/which": "3.0.4",
|
|
36
36
|
"@types/update-notifier": "6.0.8",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"ofetch": "1.5.1",
|
|
67
67
|
"picomatch": "4.0.7",
|
|
68
68
|
"lru-cache": "11.5.2",
|
|
69
|
-
"@rse/specbook": "1.2.
|
|
69
|
+
"@rse/specbook": "1.2.8",
|
|
70
70
|
"source-code-error": "1.2.0",
|
|
71
71
|
"pure-uuid": "2.0.0"
|
|
72
72
|
},
|
|
@@ -77,6 +77,9 @@
|
|
|
77
77
|
"npm": ">=10.0.0",
|
|
78
78
|
"node": ">=22.13.0"
|
|
79
79
|
},
|
|
80
|
+
"upd": [
|
|
81
|
+
"!typescript"
|
|
82
|
+
],
|
|
80
83
|
"files": [
|
|
81
84
|
"dst/**/*",
|
|
82
85
|
"bin/**/*",
|
package/plugin/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"homepage": "https://ase.tools",
|
|
7
7
|
"repository": { "url": "git+https://github.com/rse/ase.git", "type": "git" },
|
|
8
8
|
"bugs": { "url": "https://github.com/rse/ase/issues" },
|
|
9
|
-
"version": "0.9.
|
|
9
|
+
"version": "0.9.69",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"author": {
|
|
12
12
|
"name": "Dr. Ralf S. Engelschall",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@rse/stx": "1.1.6",
|
|
18
|
-
"@rse/specbook": "1.2.
|
|
18
|
+
"@rse/specbook": "1.2.8",
|
|
19
19
|
"markdownlint": "0.41.1",
|
|
20
20
|
"markdownlint-cli2": "0.23.2",
|
|
21
21
|
"eslint": "10.10.0",
|