aontu 0.50.0 → 0.50.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/dist/aontu.d.ts CHANGED
@@ -3,7 +3,7 @@ import { Lang } from './lang';
3
3
  import { AontuContext, AontuContextConfig } from './ctx';
4
4
  import { formatExplain } from './utility';
5
5
  import { AontuError } from './err';
6
- declare const VERSION = "0.50.0";
6
+ declare const VERSION = "0.50.1";
7
7
  declare class Aontu {
8
8
  opts: AontuOptions;
9
9
  lang: Lang;
package/dist/aontu.js CHANGED
@@ -20,7 +20,7 @@ Object.defineProperty(exports, "AontuError", { enumerable: true, get: function (
20
20
  // Kept in step with package.json by the `version` npm lifecycle script,
21
21
  // which runs on `npm version` / `npm run repo-bump`. version.test.ts
22
22
  // fails if the two ever drift.
23
- const VERSION = '0.50.0';
23
+ const VERSION = '0.50.1';
24
24
  exports.VERSION = VERSION;
25
25
  class Aontu {
26
26
  constructor(popts) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aontu",
3
- "version": "0.50.0",
3
+ "version": "0.50.1",
4
4
  "main": "dist/aontu.js",
5
5
  "type": "commonjs",
6
6
  "types": "dist/aontu.d.ts",
@@ -47,13 +47,13 @@
47
47
  "LICENSE"
48
48
  ],
49
49
  "dependencies": {
50
- "@tabnas/debug": "0.3.0",
51
- "@tabnas/directive": "0.5.0",
52
- "@tabnas/expr": "0.5.0",
50
+ "@tabnas/debug": "0.3.1",
51
+ "@tabnas/directive": "0.5.1",
52
+ "@tabnas/expr": "0.5.1",
53
53
  "@tabnas/jsonic": "0.6.0",
54
- "@tabnas/multisource": "0.5.0",
54
+ "@tabnas/multisource": "0.5.1",
55
55
  "@tabnas/parser": "0.8.0",
56
- "@tabnas/path": "0.3.0"
56
+ "@tabnas/path": "0.3.1"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@types/node": "26.1.1",
package/src/aontu.ts CHANGED
@@ -20,7 +20,7 @@ import { makeNilErr, descErr, AontuError } from './err'
20
20
  // Kept in step with package.json by the `version` npm lifecycle script,
21
21
  // which runs on `npm version` / `npm run repo-bump`. version.test.ts
22
22
  // fails if the two ever drift.
23
- const VERSION = '0.50.0'
23
+ const VERSION = '0.50.1'
24
24
 
25
25
 
26
26
  class Aontu {