Skip to content

Commit 22b32f2

Browse files
committed
chore: add another batch of instrumentations
1 parent cbedab6 commit 22b32f2

File tree

6 files changed

+18
-12
lines changed

6 files changed

+18
-12
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@
1313
"lint:fix": "eslint . --ext .ts --fix",
1414
"prepublishOnly": "npm run compile",
1515
"tdd": "npm run test -- --watch-extensions ts --watch",
16-
"test": "nyc mocha 'test/**/*.test.ts'",
16+
"test": "nyc --no-clean mocha 'test/**/*.test.ts'",
1717
"test-all-versions": "tav",
18-
"version:update": "node ../../../scripts/version-update.js"
18+
"version:update": "node ../../../scripts/version-update.js",
19+
"coverage:merge": "nyc merge .nyc_output coverage/coverage-final.json"
1920
},
2021
"keywords": [
2122
"bunyan",

plugins/node/opentelemetry-instrumentation-cassandra/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
"tdd": "npm run test -- --watch-extensions ts --watch",
1111
"clean": "rimraf build/*",
1212
"lint": "eslint . --ext .ts",
@@ -15,7 +15,8 @@
1515
"prepublishOnly": "npm run compile",
1616
"version:update": "node ../../../scripts/version-update.js",
1717
"setup:dev": "nx run-many -t compile -p @opentelemetry/instrumentation-cassandra-driver",
18-
"compile": "tsc -p ."
18+
"compile": "tsc -p .",
19+
"coverage:merge": "nyc merge .nyc_output coverage/coverage-final.json"
1920
},
2021
"keywords": [
2122
"cassandra-driver",

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@
1313
"lint:fix": "eslint . --ext .ts --fix",
1414
"lint:readme": "node ../../../scripts/lint-readme.js",
1515
"prepublishOnly": "npm run compile",
16-
"test": "nyc mocha 'test/**/*.test.ts'",
16+
"test": "nyc --no-clean mocha 'test/**/*.test.ts'",
1717
"version:update": "node ../../../scripts/version-update.js",
18-
"watch": "tsc -w"
18+
"watch": "tsc -w",
19+
"coverage:merge": "nyc merge .nyc_output coverage/coverage-final.json"
1920
},
2021
"keywords": [
2122
"connect",

plugins/node/opentelemetry-instrumentation-dns/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
"tdd": "npm run test -- --watch-extensions ts --watch",
1111
"clean": "rimraf build/*",
1212
"lint": "eslint . --ext .ts",
@@ -15,7 +15,8 @@
1515
"version:update": "node ../../../scripts/version-update.js",
1616
"lint:readme": "node ../../../scripts/lint-readme",
1717
"setup:dev": "nx run-many -t compile -p @opentelemetry/instrumentation-dns",
18-
"compile": "tsc -p ."
18+
"compile": "tsc -p .",
19+
"coverage:merge": "nyc merge .nyc_output coverage/coverage-final.json"
1920
},
2021
"keywords": [
2122
"dns",

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"repository": "open-telemetry/opentelemetry-js-contrib",
88
"scripts": {
99
"test-all-versions": "tav",
10-
"test": "nyc mocha 'test/**/*.test.ts'",
10+
"test": "nyc --no-clean mocha 'test/**/*.test.ts'",
1111
"tdd": "yarn test -- --watch-extensions ts --watch",
1212
"clean": "rimraf build/*",
1313
"lint": "eslint . --ext .ts",
@@ -17,7 +17,8 @@
1717
"setup:dev": "nx run-many -t compile -p @opentelemetry/instrumentation-express",
1818
"compile": "tsc -p .",
1919
"prepublishOnly": "npm run compile",
20-
"watch": "tsc -w"
20+
"watch": "tsc -w",
21+
"coverage:merge": "nyc merge .nyc_output coverage/coverage-final.json"
2122
},
2223
"keywords": [
2324
"express",

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@
1313
"lint:fix": "eslint . --ext .ts --fix",
1414
"lint:readme": "node ../../../scripts/lint-readme.js",
1515
"prepublishOnly": "npm run compile",
16-
"test": "nyc mocha 'test/**/*.test.ts'",
16+
"test": "nyc --no-clean mocha 'test/**/*.test.ts'",
1717
"test-all-versions": "tav",
1818
"version:update": "node ../../../scripts/version-update.js",
19-
"watch": "tsc -w"
19+
"watch": "tsc -w",
20+
"coverage:merge": "nyc merge .nyc_output coverage/coverage-final.json"
2021
},
2122
"keywords": [
2223
"fastify",

0 commit comments

Comments
 (0)