@depctdev/depct 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,7 +5,7 @@ Run Node applications with Depct instrumentation without manually setting `NODE_
5
5
  ## Usage
6
6
 
7
7
  ```bash
8
- npx @kiranpoudel/depct run -- node server.js
8
+ npx @depctdev/depct run -- node server.js
9
9
  ```
10
10
 
11
11
  That command auto-injects `depct-loader` and defaults to verbose diagnostics to match your manual setup:
@@ -29,6 +29,6 @@ That command auto-injects `depct-loader` and defaults to verbose diagnostics to
29
29
  Examples:
30
30
 
31
31
  ```bash
32
- npx @kiranpoudel/depct run --project-id my-api -- node server.js
33
- npx @kiranpoudel/depct run --no-debug-events -- node server.js
32
+ npx @depctdev/depct run --project-id my-api -- node server.js
33
+ npx @depctdev/depct run --no-debug-events -- node server.js
34
34
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@depctdev/depct",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "CLI for running Node apps with Depct instrumentation",
5
5
  "bin": {
6
6
  "depct": "src/index.cjs"