@blackycoderx4/devc 0.5.0 → 0.6.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.
package/README.md CHANGED
@@ -22,7 +22,7 @@ CLI tool for generating ready-to-use development containers.
22
22
  ### npm (Recommended — works on all platforms)
23
23
 
24
24
  ```bash
25
- npm install -g devc
25
+ npm i @blackycoderx4/devc
26
26
  ```
27
27
 
28
28
  Requires Node.js 14+. The package automatically downloads the correct native binary for your platform (Windows, Linux, or macOS).
package/bin/devc.js CHANGED
@@ -18,7 +18,7 @@ const binPath = path.join(vendorDir, asset.bin);
18
18
 
19
19
  if (!fs.existsSync(binPath)) {
20
20
  console.error(
21
- 'devc binary not found. Please reinstall the package (npm install -g devc).'
21
+ 'devc binary not found. Please reinstall the package (npm i @blackycoderx4/devc).'
22
22
  );
23
23
  process.exit(1);
24
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blackycoderx4/devc",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "CLI for generating devcontainers",
5
5
  "main": "bin/devc.js",
6
6
  "bin": {
@@ -34,4 +34,4 @@
34
34
  "engines": {
35
35
  "node": ">=14"
36
36
  }
37
- }
37
+ }