Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ dist/
node_modules/
npm-debug*
.nyc_output/
dash0hq-opentelemetry-*.tgz
dash0-opentelemetry-*.tgz
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@dash0hq/opentelemetry",
"name": "@dash0/opentelemetry",
"version": "0.0.0-managed-by-semantic-release",
"description": "Dash0 OpenTelemetry Wrapper for Node.js",
"main": "dist/src/index.js",
Expand All @@ -9,7 +9,7 @@
"verify": "npm run lint && npm test",
"lint": "npm run eslint && npm run prettier-check",
"eslint": "eslint eslint.config.mjs src test",
"prepack": "rimraf dash0hq-opentelemetry-*.tgz && npm run build",
"prepack": "rimraf dash0-opentelemetry-*.tgz && npm run build",
"prettier": "prettier --write eslint.config.mjs .mocharc.js 'src/**/*.[jt]s' 'test/**/*.[jt]s' --parser typescript",
"prettier-check": "prettier --check eslint.config.mjs 'src/**/*.[jt]s' 'test/**/*.[jt]s' --parser typescript",
"test": "npm run test:unit && npm run test:integration",
Expand Down
2 changes: 1 addition & 1 deletion src/1.x/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ try {
if (packageJson) {
// Since we read the package.json from two possible relative paths, we are extra-careful to make sure we actually are
// reading from our own package.json file, hence the name check.
if (packageJson.name === '@dash0hq/opentelemetry') {
if (packageJson.name === '@dash0/opentelemetry') {
version = packageJson.version;
} else {
printDebugStderr(
Expand Down
2 changes: 1 addition & 1 deletion src/2.x/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ try {
if (packageJson) {
// Since we read the package.json from two possible relative paths, we are extra-careful to make sure we actually are
// reading from our own package.json file, hence the name check.
if (packageJson.name === '@dash0hq/opentelemetry') {
if (packageJson.name === '@dash0/opentelemetry') {
version = packageJson.version;
} else {
printDebugStderr(
Expand Down