@blackycoderx4/devc 0.5.0 → 0.7.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 +1 -1
- package/bin/devc.js +1 -1
- package/package.json +2 -2
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
|
|
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
|
|
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