textbrowser 0.47.0-beta.0 → 0.47.0-beta.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/CHANGES.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGES to `textbrowser`
2
2
 
3
+ ## 0.47.0 (beta 1)
4
+
5
+ - fix: path regression
6
+
3
7
  ## 0.47.0 (beta 0)
4
8
 
5
9
  - BREAKING fix: drop schemas now moved to textbrowser-data-schemas
@@ -177,7 +177,7 @@
177
177
  }
178
178
  },
179
179
  {
180
- "$ref": "../node_modules/textbrowser-data-schemas/schemas/locale.jsonschema"
180
+ "$ref": "../../textbrowser-data-schemas/schemas/locale.jsonschema"
181
181
  }
182
182
  ]
183
183
  }
@@ -205,7 +205,7 @@
205
205
  "type": "object",
206
206
  "properties": {
207
207
  "file": {
208
- "$ref": "../node_modules/textbrowser-data-schemas/schemas/table-container.jsonschema"
208
+ "$ref": "../../textbrowser-data-schemas/schemas/table-container.jsonschema"
209
209
  },
210
210
  "name": {
211
211
  "type": "string"
@@ -6,7 +6,7 @@
6
6
  "type": "string"
7
7
  },
8
8
  "localization-strings": {
9
- "$ref": "../node_modules/textbrowser-data-schemas/schemas/locale.jsonschema"
9
+ "$ref": "../../textbrowser-data-schemas/schemas/locale.jsonschema"
10
10
  },
11
11
  "languages": {
12
12
  "type": "array",
@@ -24,7 +24,7 @@
24
24
  "enum": ["ltr", "rtl"]
25
25
  },
26
26
  "locale": {
27
- "$ref": "../node_modules/textbrowser-data-schemas/schemas/locale.jsonschema"
27
+ "$ref": "../../textbrowser-data-schemas/schemas/locale.jsonschema"
28
28
  }
29
29
  }
30
30
  }
@@ -18,7 +18,7 @@
18
18
  "site": {"$ref": "#/definitions/siteType"},
19
19
  "navigation": {"$ref": "#/definitions/siteType"},
20
20
  "localization-strings": {
21
- "$ref": "../node_modules/textbrowser-data-schemas/schemas/locale.jsonschema"
21
+ "$ref": "../../textbrowser-data-schemas/schemas/locale.jsonschema"
22
22
  }
23
23
  }
24
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "textbrowser",
3
- "version": "0.47.0-beta.0",
3
+ "version": "0.47.0-beta.1",
4
4
  "description": "Multilinear text browser",
5
5
  "type": "module",
6
6
  "main": "dist/index-es.min.js",