chevrotain
Advanced tools
Comparing version 8.0.0 to 8.0.1
@@ -7,3 +7,3 @@ "use strict"; | ||
// A separate file avoids cyclic dependencies and webpack errors. | ||
exports.VERSION = "8.0.0"; | ||
exports.VERSION = "8.0.1"; | ||
//# sourceMappingURL=version.js.map |
{ | ||
"name": "chevrotain", | ||
"version": "8.0.0", | ||
"version": "8.0.1", | ||
"description": "Chevrotain is a high performance fault tolerant javascript parsing DSL for building recursive decent parsers", | ||
@@ -68,3 +68,3 @@ "keywords": [ | ||
"check-coverage": "nyc check-coverage --lines 100 --branches 100 --statements 100 --functions 100", | ||
"bundle": "npm-run-all bundle:*", | ||
"bundle": "npm-run-all bundle:**", | ||
"api-site:build": "typedoc api.d.ts --out dev/docs --excludeExternals --excludePrivate", | ||
@@ -81,6 +81,6 @@ "api-site:upload": "./scripts/api-site-upload.sh", | ||
"---------- BUNDLING --------": "", | ||
"bundle:regular": "esbuild ./lib/src/api.js --bundle --sourcemap --outfile=lib/chevrotain.js", | ||
"bundle:min": "esbuild ./lib/src/api.js --bundle --minify --sourcemap --outfile=lib/chevrotain.min.js", | ||
"bundle:esm:regular": "esbuild ./lib/src/api.js --bundle --sourcemap --format=esm --outfile=lib/chevrotain.mjs", | ||
"bundle:esm:min": "esbuild ./lib/src/api.js --bundle --minify --format=esm --sourcemap --outfile=lib/chevrotain.min.mjs" | ||
"bundle:regular": "webpack --config webpack_release.config.js", | ||
"bundle:min": "webpack --config webpack_release_min.config.js", | ||
"bundle:esm:regular": "esbuild ./lib/src/api.js --bundle --sourcemap --format=esm --outfile=lib_esm/chevrotain.mjs", | ||
"bundle:esm:min": "esbuild ./lib/src/api.js --bundle --minify --format=esm --sourcemap --outfile=lib_esm/chevrotain.min.mjs" | ||
}, | ||
@@ -109,2 +109,4 @@ "dependencies": { | ||
"vuepress": "^1.4.1", | ||
"webpack": "5.24.2", | ||
"webpack-cli": "^4.1.0", | ||
"xregexp": "^5.0.1" | ||
@@ -122,3 +124,3 @@ }, | ||
}, | ||
"gitHead": "d7f85bd144a3e87bf7ccf4b75def87b2f80dcb9c" | ||
"gitHead": "a06722ba4fa2e7cfc8048df74f03473d74b6ad32" | ||
} |
// needs a separate module as this is required inside chevrotain productive code | ||
// and also in the entry point for webpack(api.ts). | ||
// A separate file avoids cyclic dependencies and webpack errors. | ||
export const VERSION = "8.0.0" | ||
export const VERSION = "8.0.1" |
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
1652511
31100
21