aontu 0.73.0 → 0.74.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/dist/aontu.d.ts CHANGED
@@ -23,7 +23,7 @@ import { loadProfile } from './profile';
23
23
  import { desugarTemplate, resugarTemplate, markerFor } from './template';
24
24
  import { format, unifiedDiff } from './format';
25
25
  export type { LintFinding, FormatReport, FormatOptions } from './format';
26
- declare const VERSION = "0.73.0";
26
+ declare const VERSION = "0.74.0";
27
27
  declare class Aontu {
28
28
  opts: AontuOptions;
29
29
  lang: Lang;
package/dist/aontu.js CHANGED
@@ -59,7 +59,7 @@ Object.defineProperty(exports, "markerFor", { enumerable: true, get: function ()
59
59
  const format_1 = require("./format");
60
60
  Object.defineProperty(exports, "format", { enumerable: true, get: function () { return format_1.format; } });
61
61
  Object.defineProperty(exports, "unifiedDiff", { enumerable: true, get: function () { return format_1.unifiedDiff; } });
62
- const VERSION = '0.73.0';
62
+ const VERSION = '0.74.0';
63
63
  exports.VERSION = VERSION;
64
64
  function genQuiet(val, aontu) {
65
65
  return val.gen(aontu.ctx({ collect: true }));
package/dist/lsp.d.ts CHANGED
@@ -4,7 +4,7 @@ declare const SEVERITY_ERROR = 1;
4
4
  declare const SEVERITY_WARNING = 2;
5
5
  declare const SEVERITY_INFORMATION = 3;
6
6
  declare const SEVERITY_HINT = 4;
7
- declare const LSP_VERSION = "0.73.0";
7
+ declare const LSP_VERSION = "0.74.0";
8
8
  type Position = {
9
9
  line: number;
10
10
  character: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aontu",
3
- "version": "0.73.0",
3
+ "version": "0.74.0",
4
4
  "main": "dist/aontu.js",
5
5
  "type": "commonjs",
6
6
  "types": "dist/aontu.d.ts",
@@ -64,25 +64,25 @@
64
64
  "LICENSE"
65
65
  ],
66
66
  "dependencies": {
67
- "@tabnas/abnf": "0.4.13",
68
- "@tabnas/bnf": "0.1.15",
69
- "@tabnas/debug": "0.3.2",
70
- "@tabnas/directive": "0.5.2",
71
- "@tabnas/expr": "0.5.5",
72
- "@tabnas/ini": "0.5.7",
73
- "@tabnas/json": "0.5.7",
74
- "@tabnas/json5": "0.5.7",
75
- "@tabnas/jsonc": "0.5.6",
76
- "@tabnas/jsonic": "0.6.2",
77
- "@tabnas/multisource": "0.5.2",
78
- "@tabnas/parser": "0.9.7",
79
- "@tabnas/path": "0.3.2",
80
- "@tabnas/toml": "0.5.7",
81
- "@tabnas/yaml": "0.5.7",
67
+ "@tabnas/abnf": "0.4.15",
68
+ "@tabnas/bnf": "0.1.19",
69
+ "@tabnas/debug": "0.3.8",
70
+ "@tabnas/directive": "0.5.8",
71
+ "@tabnas/expr": "0.5.10",
72
+ "@tabnas/ini": "0.5.9",
73
+ "@tabnas/json": "0.5.10",
74
+ "@tabnas/json5": "0.5.8",
75
+ "@tabnas/jsonc": "0.5.7",
76
+ "@tabnas/jsonic": "0.7.1",
77
+ "@tabnas/multisource": "0.5.8",
78
+ "@tabnas/parser": "0.12.2",
79
+ "@tabnas/path": "0.3.8",
80
+ "@tabnas/toml": "0.5.8",
81
+ "@tabnas/yaml": "0.5.8",
82
82
  "jostraca": "0.38.0"
83
83
  },
84
84
  "devDependencies": {
85
- "@tabnas/railroad": "0.3.6",
85
+ "@tabnas/railroad": "0.3.7",
86
86
  "@types/node": "26.2.0",
87
87
  "memfs": "4.68.1",
88
88
  "typescript": "7.0.2"
package/src/aontu.ts CHANGED
@@ -36,7 +36,7 @@ import { format, unifiedDiff } from './format'
36
36
  export type { LintFinding, FormatReport, FormatOptions } from './format'
37
37
 
38
38
 
39
- const VERSION = '0.73.0'
39
+ const VERSION = '0.74.0'
40
40
 
41
41
 
42
42
  function genQuiet(val: any, aontu: Aontu): any {