@swagger-api/apidom-ast
Advanced tools
Comparing version 1.0.0-alpha.10 to 1.0.0-beta.0
@@ -6,2 +6,6 @@ # Change Log | ||
# [1.0.0-beta.0](https://github.com/swagger-api/apidom/compare/v1.0.0-alpha.10...v1.0.0-beta.0) (2024-11-21) | ||
**Note:** Version bump only for package @swagger-api/apidom-ast | ||
# [1.0.0-alpha.10](https://github.com/swagger-api/apidom/compare/v1.0.0-alpha.9...v1.0.0-alpha.10) (2024-10-21) | ||
@@ -8,0 +12,0 @@ |
{ | ||
"name": "@swagger-api/apidom-ast", | ||
"version": "1.0.0-alpha.10", | ||
"version": "1.0.0-beta.0", | ||
"description": "Tools necessary for parsing stage of ApiDOM, specifically for syntactic analysis.", | ||
@@ -12,20 +12,20 @@ "publishConfig": { | ||
"unpkg": "./dist/apidom.ast.min.js", | ||
"main": "./cjs/index.cjs", | ||
"main": "./src/index.cjs", | ||
"exports": { | ||
"types": "./types/dist.d.ts", | ||
"import": "./es/index.mjs", | ||
"require": "./cjs/index.cjs" | ||
"types": "./types/apidom-ast.d.ts", | ||
"import": "./src/index.mjs", | ||
"require": "./src/index.cjs" | ||
}, | ||
"types": "./types/dist.d.ts", | ||
"types": "./types/apidom-ast.d.ts", | ||
"scripts": { | ||
"build": "npm run clean && run-p --max-parallel ${CPU_CORES:-2} typescript:declaration build:es build:cjs build:umd:browser", | ||
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es --extensions '.ts' --out-file-extension '.mjs' --root-mode 'upward'", | ||
"build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir cjs --extensions '.ts' --out-file-extension '.cjs' --root-mode 'upward'", | ||
"build:es": "cross-env BABEL_ENV=es babel src --out-dir src --extensions '.ts' --out-file-extension '.mjs' --root-mode 'upward'", | ||
"build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir src --extensions '.ts' --out-file-extension '.cjs' --root-mode 'upward'", | ||
"build:umd:browser": "cross-env BABEL_ENV=browser webpack --config config/webpack/browser.config.js --progress", | ||
"lint": "eslint ./", | ||
"lint:fix": "eslint ./ --fix", | ||
"clean": "rimraf ./es ./cjs ./dist ./types", | ||
"test": "cross-env NODE_ENV=test BABEL_ENV=cjs mocha", | ||
"clean": "rimraf --glob 'src/**/*.mjs' 'src/**/*.cjs' 'test/**/*.mjs' ./dist ./types", | ||
"test": "npm run build:es && cross-env BABEL_ENV=es babel test --out-dir test --extensions '.ts' --out-file-extension '.mjs' --root-mode 'upward' && cross-env NODE_ENV=test mocha", | ||
"typescript:check-types": "tsc --noEmit", | ||
"typescript:declaration": "tsc -p declaration.tsconfig.json && rollup -c config/rollup/types.dist.js", | ||
"typescript:declaration": "tsc -p tsconfig.declaration.json && api-extractor run -l -c ./config/api-extractor/api-extractor.json", | ||
"prepack": "copyfiles -u 3 ../../LICENSES/* LICENSES && copyfiles -u 2 ../../NOTICE .", | ||
@@ -46,3 +46,3 @@ "postpack": "rimraf NOTICE LICENSES" | ||
"@babel/runtime-corejs3": "^7.20.7", | ||
"@swagger-api/apidom-error": "^1.0.0-alpha.10", | ||
"@swagger-api/apidom-error": "^1.0.0-beta.0", | ||
"@types/ramda": "~0.30.0", | ||
@@ -54,6 +54,6 @@ "ramda": "~0.30.0", | ||
"files": [ | ||
"cjs/", | ||
"src/**/*.mjs", | ||
"src/**/*.cjs", | ||
"dist/", | ||
"es/", | ||
"types/dist.d.ts", | ||
"types/apidom-ast.d.ts", | ||
"LICENSES", | ||
@@ -64,3 +64,3 @@ "NOTICE", | ||
], | ||
"gitHead": "0fbbdb5d453d7a4661f62ce5e4b690d279e50b74" | ||
"gitHead": "ed1426743ba9d9d581146e617ec1762df670320c" | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
642811
13922