Skip to content

Commit 48612c0

Browse files
committed
chore: add another chunk of instrumentations
1 parent a75ac50 commit 48612c0

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

plugins/node/opentelemetry-instrumentation-pino/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "build/src/index.d.ts",
77
"repository": "open-telemetry/opentelemetry-js-contrib",
88
"scripts": {
9-
"test": "nyc mocha 'test/**/*.test.ts'",
9+
"test": "nyc --no-clean mocha 'test/**/*.test.ts'",
1010
"test-all-versions": "tav",
1111
"tdd": "npm run test -- --watch-extensions ts --watch",
1212
"clean": "rimraf build/*",
@@ -16,7 +16,8 @@
1616
"prepublishOnly": "npm run compile",
1717
"version:update": "node ../../../scripts/version-update.js",
1818
"setup:dev": "nx run-many -t compile -p @opentelemetry/instrumentation-pino",
19-
"compile": "tsc -p ."
19+
"compile": "tsc -p .",
20+
"coverage:merge": "nyc merge .nyc_output coverage/coverage-final.json"
2021
},
2122
"keywords": [
2223
"instrumentation",

plugins/node/opentelemetry-instrumentation-restify/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@
1414
"lint:readme": "node ../../../scripts/lint-readme.js",
1515
"prepublishOnly": "npm run compile",
1616
"tdd": "yarn test -- --watch-extensions ts --watch",
17-
"test": "nyc mocha 'test/**/*.ts'",
17+
"test": "nyc --no-clean mocha 'test/**/*.ts'",
1818
"test-all-versions": "tav",
1919
"version:update": "node ../../../scripts/version-update.js",
20-
"watch": "tsc -w"
20+
"watch": "tsc -w",
21+
"coverage:merge": "nyc merge .nyc_output coverage/coverage-final.json"
2122
},
2223
"keywords": [
2324
"instrumentation",

plugins/node/opentelemetry-instrumentation-router/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "build/src/index.d.ts",
77
"repository": "open-telemetry/opentelemetry-js-contrib",
88
"scripts": {
9-
"test": "nyc mocha 'test/**/*.ts'",
9+
"test": "nyc --no-clean mocha 'test/**/*.ts'",
1010
"tdd": "yarn test -- --watch-extensions ts --watch",
1111
"clean": "rimraf build/*",
1212
"lint": "eslint . --ext .ts",
@@ -16,7 +16,8 @@
1616
"setup:dev": "nx run-many -t compile -p @opentelemetry/instrumentation-router",
1717
"compile": "tsc -p .",
1818
"prepublishOnly": "npm run compile",
19-
"watch": "tsc -w"
19+
"watch": "tsc -w",
20+
"coverage:merge": "nyc merge .nyc_output coverage/coverage-final.json"
2021
},
2122
"keywords": [
2223
"instrumentation",

plugins/node/opentelemetry-instrumentation-winston/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
"prepublishOnly": "npm run compile",
2020
"version:update": "node ../../../scripts/version-update.js",
2121
"setup:dev": "nx run-many -t compile -p @opentelemetry/instrumentation-winston",
22-
"compile": "tsc -p ."
22+
"compile": "tsc -p .",
23+
"coverage:merge": "nyc merge .nyc_output coverage/coverage-final.json"
2324
},
2425
"keywords": [
2526
"instrumentation",

0 commit comments

Comments
 (0)