glossarist 0.4.1 → 0.4.2
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/package.json +2 -2
- package/src/concept-parser.js +1 -1
- package/src/concept-reader.js +1 -1
- package/src/concept-serializer.js +1 -1
- package/src/gcr-reader.js +1 -1
- package/src/models/bibliography-data.js +1 -1
- package/src/models/gcr-metadata.js +1 -1
- package/src/v1-reader.js +1 -1
- package/src/validators/gcr-validator.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "glossarist",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "JavaScript SDK for Glossarist GCR packages — read, write, validate, and manage terminology concepts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"access": "public"
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
|
-
"js-yaml": "^
|
|
71
|
+
"js-yaml": "^5.0.0",
|
|
72
72
|
"jszip": "^3.10.1"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
package/src/concept-parser.js
CHANGED
package/src/concept-reader.js
CHANGED
package/src/gcr-reader.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import JSZip from 'jszip';
|
|
2
|
-
import yaml from 'js-yaml';
|
|
2
|
+
import * as yaml from 'js-yaml';
|
|
3
3
|
import { conceptParser } from './concept-parser.js';
|
|
4
4
|
import { InvalidInputError } from './errors.js';
|
|
5
5
|
import { COMPILED_FORMATS, parseCompiledPath, compiledPath } from './compiled-format.js';
|
package/src/v1-reader.js
CHANGED