@voxgig/build 4.16.0 → 4.16.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 +6 -4
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ deployment artifacts and application code with the
|
|
|
6
6
|
[jostraca](https://github.com/jostraca/jostraca) templating library:
|
|
7
7
|
|
|
8
8
|
- **EnvLambda** — AWS Lambda deployment templates (Serverless function
|
|
9
|
-
|
|
9
|
+
definitions, per-service handlers, resources).
|
|
10
10
|
- **EnvGen** — per-environment deployment artifacts (`local`, `basic`,
|
|
11
11
|
`docker`, `vm`, `aws`, `azure`, `cloudflare`, `web`) driven by the
|
|
12
12
|
model's `main: env:` declarations.
|
|
@@ -27,7 +27,7 @@ directly.
|
|
|
27
27
|
|
|
28
28
|
## Documentation
|
|
29
29
|
|
|
30
|
-
Organised by
|
|
30
|
+
Organised by kind:
|
|
31
31
|
|
|
32
32
|
- **Tutorial**: [From model to generated app](docs/tutorial.md)
|
|
33
33
|
- **How-to guides**:
|
|
@@ -39,8 +39,6 @@ Organised by the [Diátaxis](https://diataxis.fr) framework:
|
|
|
39
39
|
- [EnvWeb: files, slots, model inputs](docs/reference/envweb.md)
|
|
40
40
|
- **Explanation**: [Design](docs/explanation/design.md)
|
|
41
41
|
|
|
42
|
-
Working on this repo with an AI agent? See [AGENTS.md](AGENTS.md).
|
|
43
|
-
|
|
44
42
|
## Develop
|
|
45
43
|
|
|
46
44
|
```bash
|
|
@@ -49,6 +47,10 @@ npm run build # tsc -> dist/ (dist is committed; always rebuild before commit)
|
|
|
49
47
|
npm test # node:test + coverage thresholds
|
|
50
48
|
```
|
|
51
49
|
|
|
50
|
+
Generator output is pinned byte-exact by `test/fixture`; an intentional
|
|
51
|
+
output change refreshes the fixtures and says so in the commit. The
|
|
52
|
+
documentation follows [the style guide](STYLE-GUIDE.md).
|
|
53
|
+
|
|
52
54
|
## License
|
|
53
55
|
|
|
54
56
|
MIT. Copyright (c) Voxgig Ltd.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voxgig/build",
|
|
3
|
-
"version": "4.16.
|
|
3
|
+
"version": "4.16.1",
|
|
4
4
|
"main": "dist/build.js",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"types": "dist/build.d.ts",
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"test-some": "node --enable-source-maps --test --test-name-pattern=\"$npm_config_pattern\" \"dist-test/test/**/*.test.js\"",
|
|
24
24
|
"test-watch": "node --enable-source-maps --test --watch \"dist-test/test/**/*.test.js\"",
|
|
25
25
|
"watch": "tsc -w -d",
|
|
26
|
+
"scan-prose": "python3 tools/check_prose.py",
|
|
26
27
|
"build": "tsc -d && tsc -p test && cp -r test/fixture test/richmodel.js dist-test/test/",
|
|
27
28
|
"clean": "rm -rf dist dist-test node_modules yarn.lock package-lock.json",
|
|
28
29
|
"reset": "npm run clean && npm i && npm run build && npm test",
|