|
10 | 10 | "directory": "packages/instrumentation-ioredis" |
11 | 11 | }, |
12 | 12 | "scripts": { |
13 | | - "test": "nyc mocha 'test/**/*.test.ts'", |
14 | | - "test:debug": "cross-env RUN_REDIS_TESTS_LOCAL=true mocha --inspect-brk --no-timeouts 'test/**/*.test.ts'", |
15 | | - "test:local": "cross-env RUN_REDIS_TESTS_LOCAL=true npm run test", |
16 | | - "test-all-versions": "tav", |
17 | | - "test-all-versions:local": "cross-env RUN_REDIS_TESTS_LOCAL=true npm run test-all-versions", |
18 | | - "tdd": "npm run test -- --watch-extensions ts --watch", |
19 | 13 | "clean": "rimraf build/*", |
| 14 | + "compile": "tsc -p .", |
| 15 | + "compile:with-dependencies": "nx run-many -t compile -p @opentelemetry/instrumentation-ioredis", |
20 | 16 | "lint": "eslint . --ext .ts", |
21 | 17 | "lint:fix": "eslint . --ext .ts --fix", |
22 | 18 | "lint:readme": "node ../../scripts/lint-readme.js", |
23 | | - "version:update": "node ../../scripts/version-update.js", |
24 | | - "compile:with-dependencies": "nx run-many -t compile -p @opentelemetry/instrumentation-ioredis", |
25 | | - "compile": "tsc -p .", |
26 | | - "prepublishOnly": "npm run compile" |
| 19 | + "prepublishOnly": "npm run compile", |
| 20 | + "tdd": "npm run test -- --watch-extensions ts --watch", |
| 21 | + "test": "nyc mocha 'test/**/*.test.ts'", |
| 22 | + "test:debug": "cross-env RUN_REDIS_TESTS=true mocha --inspect-brk --no-timeouts 'test/**/*.test.ts'", |
| 23 | + "test:with-services-env": "cross-env NODE_OPTIONS='-r dotenv/config' DOTENV_CONFIG_PATH=../../test/test-services.env npm test", |
| 24 | + "test-all-versions": "tav", |
| 25 | + "test-all-versions:with-services-env": "cross-env NODE_OPTIONS='-r dotenv/config' DOTENV_CONFIG_PATH=../../test/test-services.env npm run test-all-versions", |
| 26 | + "test-services:start": "cd ../.. && npm run test-services:start redis", |
| 27 | + "test-services:stop": "cd ../.. && npm run test-services:stop redis", |
| 28 | + "version:update": "node ../../scripts/version-update.js" |
27 | 29 | }, |
28 | 30 | "keywords": [ |
29 | 31 | "instrumentation", |
|
0 commit comments