|
1 | 1 | { |
2 | 2 | "name": "@elastic/elasticsearch", |
3 | | - "version": "9.3.0", |
4 | | - "versionCanary": "9.3.0-canary.0", |
| 3 | + "version": "9.3.1", |
| 4 | + "versionCanary": "9.3.1-canary.0", |
5 | 5 | "description": "The official Elasticsearch client for Node.js", |
6 | 6 | "type": "commonjs", |
7 | 7 | "main": "./index.js", |
|
28 | 28 | "test": "npm run build && npm run lint && c8 --exclude='**/api/**' --exclude='**/test/**' --check-coverage --statements=96 --branches=90 --lines=96 --functions=88 tap --disable-coverage", |
29 | 29 | "test:unit": "npm run build && tap", |
30 | 30 | "test:unit-bun": "bun run build && bunx tap", |
| 31 | + "test:bundler": "npm run build && cd test/bundlers/repro && npm install file:../../.. && npx esbuild@0.24 --bundle --platform=node repro.mjs --outfile=bundled.js && node bundled.js", |
31 | 32 | "test:esm": "npm run build:esm && tap test/esm/", |
32 | 33 | "test:coverage-100": "npm run build && tap --coverage --100", |
33 | 34 | "test:coverage-report": "npm run build && tap --coverage && nyc report --reporter=text-lcov > coverage.lcov", |
|
38 | 39 | "lint:fix": "ts-standard --fix src", |
39 | 40 | "license-checker": "license-checker --production --onlyAllow='MIT;Apache-2.0;Apache1.1;ISC;BSD-3-Clause;BSD-2-Clause;0BSD'", |
40 | 41 | "license-header": "./scripts/check-spdx", |
41 | | - "prebuild": "npm run clean-build && npm run lint", |
| 42 | + "generate-version": "node scripts/generate-version.js", |
| 43 | + "prebuild": "npm run clean-build && npm run generate-version && npm run lint", |
42 | 44 | "build": "npm run build:cjs && npm run build:esm", |
43 | 45 | "build:cjs": "tsc && rm -f lib/package.json lib/index.js lib/index.d.ts", |
44 | 46 | "build:esm": "tsc -p tsconfig.esm.json && npm run build:esm-fix && npm run build:esm-package", |
|
113 | 115 | "zx": "8.8.0" |
114 | 116 | }, |
115 | 117 | "dependencies": { |
116 | | - "@elastic/transport": "^9.3.2", |
| 118 | + "@elastic/transport": "^9.3.3", |
117 | 119 | "apache-arrow": "18.x - 21.x", |
118 | 120 | "tslib": "^2.4.0" |
119 | 121 | } |
|
0 commit comments