astn-core 0.5.33 → 0.5.35

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.
@@ -1,6 +1,6 @@
1
1
  import * as _pi from 'pareto-core/dist/interface';
2
2
  import * as d_in from "../../../../../interface/generated/liana/schemas/deserialize_parse_tree/data";
3
- import * as d_out from "pareto-fountain-pen/dist/interface/generated/liana/schemas/block/data";
3
+ import * as d_out from "pareto-fountain-pen/dist/interface/generated/liana/schemas/prose/data";
4
4
  export type Parameters = {
5
5
  'position info': ['zero based', null] | ['one based', null];
6
6
  };
@@ -35,7 +35,7 @@ var __importStar = (this && this.__importStar) || (function () {
35
35
  Object.defineProperty(exports, "__esModule", { value: true });
36
36
  exports.Error = void 0;
37
37
  const _p = __importStar(require("pareto-core/dist/assign"));
38
- const sh = __importStar(require("pareto-fountain-pen/dist/shorthands/block"));
38
+ const sh = __importStar(require("pareto-fountain-pen/dist/shorthands/prose"));
39
39
  const t_token_to_fountain_pen = __importStar(require("../../location/transformers/fountain_pen"));
40
40
  const Error = ($, $p) => {
41
41
  const extra = _p.decide.state($p['position info'], ($) => {
@@ -1,6 +1,6 @@
1
1
  import * as _pi from 'pareto-core/dist/interface';
2
2
  import * as d_in from "../../../../../interface/generated/liana/schemas/location/data";
3
- import * as d_out from "pareto-fountain-pen/dist/interface/generated/liana/schemas/block/data";
3
+ import * as d_out from "pareto-fountain-pen/dist/interface/generated/liana/schemas/prose/data";
4
4
  export type Parameters = {
5
5
  'with @': boolean;
6
6
  'position info': ['zero based', null] | ['one based', null];
@@ -39,7 +39,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
39
39
  exports.Location = exports.Range = void 0;
40
40
  const _p = __importStar(require("pareto-core/dist/assign"));
41
41
  const _p_list_from_text_1 = __importDefault(require("pareto-core/dist/_p_list_from_text"));
42
- const sh = __importStar(require("pareto-fountain-pen/dist/shorthands/block"));
42
+ const sh = __importStar(require("pareto-fountain-pen/dist/shorthands/prose"));
43
43
  const temp_serialize_number = (n) => {
44
44
  return (0, _p_list_from_text_1.default)(`${n}`, ($) => $);
45
45
  };
@@ -1,4 +1,4 @@
1
1
  import * as d_in from "../../../../../interface/generated/liana/schemas/sealed_target/data";
2
- import * as d_out from "pareto-fountain-pen/dist/interface/generated/liana/schemas/block/data";
2
+ import * as d_out from "pareto-fountain-pen/dist/interface/generated/liana/schemas/prose/data";
3
3
  export declare const Value: ($: d_in.Value) => d_out.Phrase;
4
4
  export declare const Document: ($: d_in.Document) => d_out.Paragraph;
@@ -35,7 +35,7 @@ var __importStar = (this && this.__importStar) || (function () {
35
35
  Object.defineProperty(exports, "__esModule", { value: true });
36
36
  exports.Document = exports.Value = void 0;
37
37
  const _p = __importStar(require("pareto-core/dist/assign"));
38
- const sh = __importStar(require("pareto-fountain-pen/dist/shorthands/block"));
38
+ const sh = __importStar(require("pareto-fountain-pen/dist/shorthands/prose"));
39
39
  const apostrophed_1 = require("../../../primitives/text/serializers/apostrophed");
40
40
  const quoted_1 = require("../../../primitives/text/serializers/quoted");
41
41
  const backticked_1 = require("../../../primitives/text/serializers/backticked");
package/package.json CHANGED
@@ -1,15 +1,9 @@
1
1
  {
2
2
  "name": "astn-core",
3
- "version": "0.5.33",
3
+ "version": "0.5.35",
4
+ "author": "Corno",
5
+ "license": "Apache-2.0",
4
6
  "description": "The TypeScript library for parsing and formatting ASTN (Abstract Syntax Tree Notation) - a human-editable data format for structured content",
5
- "main": "./dist/index.js",
6
- "module": "./dist/index.js",
7
- "files": [
8
- "dist",
9
- "README.md",
10
- "LICENSE",
11
- "documentation"
12
- ],
13
7
  "keywords": [
14
8
  "astn",
15
9
  "parser",
@@ -22,17 +16,23 @@
22
16
  "configuration",
23
17
  "serialization"
24
18
  ],
25
- "author": "Corno",
26
- "license": "Apache-2.0",
19
+ "homepage": "https://github.com/corno/astn-core#readme",
20
+ "bugs": {
21
+ "url": "https://github.com/corno/astn-core/issues"
22
+ },
27
23
  "repository": {
28
24
  "type": "git",
29
25
  "url": "git+https://github.com/corno/astn-core.git"
30
26
  },
31
- "bugs": {
32
- "url": "https://github.com/corno/astn-core/issues"
33
- },
34
- "homepage": "https://github.com/corno/astn-core#readme",
27
+ "main": "./dist/index.js",
28
+ "module": "./dist/index.js",
29
+ "files": [
30
+ "dist",
31
+ "README.md",
32
+ "LICENSE",
33
+ "documentation"
34
+ ],
35
35
  "dependencies": {
36
- "pareto-fountain-pen": "^0.4.39"
36
+ "pareto-fountain-pen": "^0.4.43"
37
37
  }
38
38
  }