kuzzle 2.50.0-beta.3 → 2.50.0-beta.4

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/dist/package.json CHANGED
@@ -1,14 +1,13 @@
1
1
  {
2
2
  "name": "kuzzle",
3
3
  "author": "The Kuzzle Team <support@kuzzle.io>",
4
- "version": "2.50.0-beta.3",
4
+ "version": "2.50.0-beta.4",
5
5
  "description": "Kuzzle is an open-source solution that handles all the data management through a secured API, with a large choice of protocols.",
6
6
  "scripts": {
7
7
  "build": "tsc && node ./bin/copy-protobuf.js",
8
8
  "cucumber": "cucumber.js --fail-fast",
9
9
  "dev": "tsx watch start-kuzzle-dev.ts",
10
10
  "doc-error-codes": "node -r ts-node/register doc/build-error-codes",
11
- "preinstall": "node ./bin/check-node-version.js",
12
11
  "prepublishOnly": "npm run build",
13
12
  "prettier": "prettier ./lib ./test ./features --write",
14
13
  "test:functional:legacy:http": "cucumber-js --format progress-bar --profile httpLegacy --config cucumber.config.cjs",
package/package.json CHANGED
@@ -1,14 +1,13 @@
1
1
  {
2
2
  "name": "kuzzle",
3
3
  "author": "The Kuzzle Team <support@kuzzle.io>",
4
- "version": "2.50.0-beta.3",
4
+ "version": "2.50.0-beta.4",
5
5
  "description": "Kuzzle is an open-source solution that handles all the data management through a secured API, with a large choice of protocols.",
6
6
  "scripts": {
7
7
  "build": "tsc && node ./bin/copy-protobuf.js",
8
8
  "cucumber": "cucumber.js --fail-fast",
9
9
  "dev": "tsx watch start-kuzzle-dev.ts",
10
10
  "doc-error-codes": "node -r ts-node/register doc/build-error-codes",
11
- "preinstall": "node ./bin/check-node-version.js",
12
11
  "prepublishOnly": "npm run build",
13
12
  "prettier": "prettier ./lib ./test ./features --write",
14
13
  "test:functional:legacy:http": "cucumber-js --format progress-bar --profile httpLegacy --config cucumber.config.cjs",
@@ -1,11 +0,0 @@
1
- /* eslint-disable no-console */
2
- "use strict";
3
- const semver = require("semver");
4
- const { engines } = require("../package.json");
5
- const version = engines.node;
6
- const nodeVersion = process.version;
7
- if (!semver.satisfies(nodeVersion, version)) {
8
- console.error("\x1b[31m%s\x1b[0m", `Required node version ${version} not satisfied with current version ${nodeVersion}`);
9
- process.exit(1);
10
- }
11
- //# sourceMappingURL=check-node-version.js.map