@rse/ase 0.9.68 → 1.0.0

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, which are mere progress chatter under ASE and hence are
37
- not logged at all, while the regular and detailed processing
38
- messages reach the info log and the tracing ones the debug log */
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: null,
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
- const logLevel = Spec.logLevel[level];
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.68",
9
+ "version": "1.0.0",
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.4.1",
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.7",
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/**/*",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ase",
3
- "version": "0.9.68",
3
+ "version": "1.0.0",
4
4
  "description": "Agentic Software Engineering (ASE)",
5
5
  "keywords": [ "agentic", "software", "engineering" ],
6
6
  "homepage": "https://ase.tools",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ase",
3
- "version": "0.9.68",
3
+ "version": "1.0.0",
4
4
  "description": "Agentic Software Engineering (ASE)",
5
5
  "keywords": [ "agentic", "software", "engineering" ],
6
6
  "homepage": "https://ase.tools",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ase",
3
- "version": "0.9.68",
3
+ "version": "1.0.0",
4
4
  "description": "Agentic Software Engineering (ASE)",
5
5
  "keywords": [ "agentic", "software", "engineering" ],
6
6
  "homepage": "https://ase.tools",
@@ -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.68",
9
+ "version": "1.0.0",
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.7",
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",