@swagger-api/apidom-core 1.4.0 → 1.5.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/CHANGELOG.md +8 -0
- package/dist/apidom-core.browser.js +14379 -17177
- package/dist/apidom-core.browser.min.js +1 -1
- package/package.json +9 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swagger-api/apidom-core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "Tools for manipulating ApiDOM structures.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
},
|
|
21
21
|
"types": "./types/apidom-core.d.ts",
|
|
22
22
|
"scripts": {
|
|
23
|
-
"build": "npm run clean && run-p --max-parallel ${CPU_CORES:-
|
|
23
|
+
"build": "npm run clean && run-p --max-parallel ${CPU_CORES:-6} typescript:declaration build:es build:cjs build:umd:browser",
|
|
24
24
|
"build:es": "cross-env BABEL_ENV=es babel src --out-dir src --extensions '.ts' --out-file-extension '.mjs' --root-mode 'upward'",
|
|
25
25
|
"build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir src --extensions '.ts' --out-file-extension '.cjs' --root-mode 'upward'",
|
|
26
|
-
"build:umd:browser": "
|
|
26
|
+
"build:umd:browser": "vite build",
|
|
27
27
|
"lint": "eslint ./",
|
|
28
28
|
"lint:fix": "eslint ./ --fix",
|
|
29
29
|
"clean": "rimraf --glob 'src/**/*.mjs' 'src/**/*.cjs' ./dist ./types",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"license": "Apache-2.0",
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@babel/runtime-corejs3": "^7.26.10",
|
|
45
|
-
"@swagger-api/apidom-ast": "^1.
|
|
46
|
-
"@swagger-api/apidom-error": "^1.
|
|
45
|
+
"@swagger-api/apidom-ast": "^1.5.1",
|
|
46
|
+
"@swagger-api/apidom-error": "^1.5.1",
|
|
47
47
|
"@types/ramda": "~0.30.0",
|
|
48
48
|
"minim": "~0.23.8",
|
|
49
49
|
"ramda": "~0.30.0",
|
|
@@ -62,5 +62,8 @@
|
|
|
62
62
|
"README.md",
|
|
63
63
|
"CHANGELOG.md"
|
|
64
64
|
],
|
|
65
|
-
"
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@rollup/plugin-terser": "^0.4.4"
|
|
67
|
+
},
|
|
68
|
+
"gitHead": "103cc50a692501bc3101c2935a939c22c535471f"
|
|
66
69
|
}
|