@voxgig/system 1.15.0 → 1.15.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.
Files changed (2) hide show
  1. package/README.md +6 -3
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -13,7 +13,7 @@ Runtime and tooling for Voxgig system projects (as created by
13
13
 
14
14
  ## Documentation
15
15
 
16
- Organised by the [Diátaxis](https://diataxis.fr) framework:
16
+ Organised into four kinds of page:
17
17
 
18
18
  - **Tutorial**: [Grow a project with the CLI](docs/tutorial.md)
19
19
  - **How-to guides**:
@@ -24,8 +24,6 @@ Organised by the [Diátaxis](https://diataxis.fr) framework:
24
24
  - [API](docs/reference/api.md)
25
25
  - **Explanation**: [How the model wires the runtime](docs/explanation/model-wiring.md)
26
26
 
27
- Working on this repo with an AI agent? See [AGENTS.md](AGENTS.md).
28
-
29
27
  ## Quick start
30
28
 
31
29
  ```bash
@@ -44,6 +42,11 @@ npm run build
44
42
  npm test
45
43
  ```
46
44
 
45
+ `dist/` is committed, so run `npm run build` before you commit. The `add`
46
+ commands append to the model files rather than rewriting them, and the
47
+ tests hold them to that: preserving a user's formatting and comments is a
48
+ feature. The documentation follows [the style guide](STYLE-GUIDE.md).
49
+
47
50
  ## License
48
51
 
49
52
  MIT. Copyright (c) Voxgig Ltd.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voxgig/system",
3
- "version": "1.15.0",
3
+ "version": "1.15.1",
4
4
  "main": "dist/system.js",
5
5
  "type": "commonjs",
6
6
  "types": "dist/system.d.ts",
@@ -19,6 +19,7 @@
19
19
  "test": "node --enable-source-maps --experimental-test-coverage --test-coverage-exclude='dist-test/test/**' --test-coverage-lines=95 --test-coverage-functions=95 --test-coverage-branches=88 --test-reporter=spec --test-reporter-destination=stdout --test-reporter=lcov --test-reporter-destination=coverage.lcov --test \"dist-test/test/**/*.test.js\"",
20
20
  "test-some": "node --enable-source-maps --test --test-name-pattern=\"$npm_config_pattern\" \"dist-test/test/**/*.test.js\"",
21
21
  "test-watch": "node --enable-source-maps --test --watch \"dist-test/test/**/*.test.js\"",
22
+ "scan-prose": "python3 tools/check_prose.py",
22
23
  "watch": "tsc -w -d",
23
24
  "build": "tsc -d && tsc -p test",
24
25
  "clean": "rm -rf dist dist-test node_modules yarn.lock package-lock.json",