@altopelago/aeon-core 0.11.0 → 0.12.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/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ import { type ParserError, type Document, type Value } from '@altopelago/aeon-pa
|
|
|
18
18
|
import { EventEmissionError, type AssignmentEvent, type PathResolutionError, type ReferenceValidationError, type ModeEnforcementError, type DatatypePolicy, type Mode } from '@altopelago/aeon-aes';
|
|
19
19
|
import { type AnnotationRecord } from '@altopelago/aeon-annotation-stream';
|
|
20
20
|
export { inspectFilePreamble, type FilePreambleInfo, type HostDirective, type HostDirectiveKind } from './preamble.js';
|
|
21
|
-
export declare const VERSION = "0.
|
|
21
|
+
export declare const VERSION = "0.12.0";
|
|
22
22
|
/**
|
|
23
23
|
* Union of all possible AEON errors
|
|
24
24
|
*/
|
package/dist/index.js
CHANGED
|
@@ -21,7 +21,7 @@ export { inspectFilePreamble } from './preamble.js';
|
|
|
21
21
|
// =============================================================================
|
|
22
22
|
// PUBLIC API
|
|
23
23
|
// =============================================================================
|
|
24
|
-
export const VERSION = '0.
|
|
24
|
+
export const VERSION = '0.12.0';
|
|
25
25
|
export class InputSizeExceededError extends Error {
|
|
26
26
|
code = 'INPUT_SIZE_EXCEEDED';
|
|
27
27
|
actualBytes;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@altopelago/aeon-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"description": "Core AEON TypeScript compiler for parsing, validation, and assignment events.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -45,10 +45,10 @@
|
|
|
45
45
|
"access": "public"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@altopelago/aeon-lexer": "0.
|
|
49
|
-
"@altopelago/aeon-parser": "0.
|
|
50
|
-
"@altopelago/aeon-aes": "0.
|
|
51
|
-
"@altopelago/aeon-annotation-stream": "0.
|
|
48
|
+
"@altopelago/aeon-lexer": "0.12.0",
|
|
49
|
+
"@altopelago/aeon-parser": "0.12.0",
|
|
50
|
+
"@altopelago/aeon-aes": "0.12.0",
|
|
51
|
+
"@altopelago/aeon-annotation-stream": "0.12.0"
|
|
52
52
|
},
|
|
53
53
|
"scripts": {
|
|
54
54
|
"build": "tsc -p tsconfig.json",
|