@jarenjs/emit 0.72.2 → 0.73.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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/src/markdown.js +3 -7
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jarenjs/emit",
3
3
  "private": false,
4
- "version": "0.72.2",
4
+ "version": "0.73.0",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",
7
7
  "types": "./dist/types/index.d.ts",
@@ -68,8 +68,8 @@
68
68
  "prepack": "npm run build:types"
69
69
  },
70
70
  "dependencies": {
71
- "@jarenjs/core": "^0.72.2",
72
- "@jarenjs/json": "^0.72.2",
73
- "@jarenjs/validate": "^0.72.2"
71
+ "@jarenjs/core": "^0.73.0",
72
+ "@jarenjs/json": "^0.73.0",
73
+ "@jarenjs/validate": "^0.73.0"
74
74
  }
75
75
  }
package/src/markdown.js CHANGED
@@ -1,11 +1,7 @@
1
1
  //#region the Markdown emitter
2
- // The second target, and the reason the type model exists as a separate,
3
- // published stage rather than as private state inside the TypeScript printer.
4
- //
5
- // It is deliberately as unlike TypeScript as a target can be — prose and
6
- // tables instead of declarations — so that if the model were secretly shaped
7
- // around one language, writing this would have required changing it. It did
8
- // not, which is the evidence the split earned its keep.
2
+ // Render the published, language-neutral type model as prose and tables.
3
+ // Schema analysis stays in the model compiler so documentation and type
4
+ // declarations describe the same constraints.
9
5
 
10
6
  import { compileJtltStylesheet } from '@jarenjs/json/jtlt';
11
7
  import { createTypeTestCompiler } from '@jarenjs/validate/query';