@swagger-api/apidom-core 1.5.0 → 1.6.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swagger-api/apidom-core",
3
- "version": "1.5.0",
3
+ "version": "1.6.0",
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:-2} typescript:declaration build:es build:cjs build:umd:browser",
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": "cross-env BABEL_ENV=browser webpack --config config/webpack/browser.config.js --progress",
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.5.0",
46
- "@swagger-api/apidom-error": "^1.5.0",
45
+ "@swagger-api/apidom-ast": "^1.6.0",
46
+ "@swagger-api/apidom-error": "^1.6.0",
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
- "gitHead": "4bfa97c2350c1c3daa6a8a5ed002786f066b7729"
65
+ "devDependencies": {
66
+ "@rollup/plugin-terser": "^0.4.4"
67
+ },
68
+ "gitHead": "bcac0ef25e9689b04d97e49151b0854be9fc6613"
66
69
  }