offline-npm-manager 1.0.6 → 1.0.7
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 +17 -0
- package/dist/cli.cjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -274,6 +274,23 @@ offline-npm add express --deps
|
|
|
274
274
|
|
|
275
275
|
---
|
|
276
276
|
|
|
277
|
+
## Changelog
|
|
278
|
+
|
|
279
|
+
### Version 1.0.7 (Latest)
|
|
280
|
+
|
|
281
|
+
**🐛 Bug Fixes:**
|
|
282
|
+
|
|
283
|
+
- **Fixed dependency version format in package.json** - When using `offline-npm install <package> --save`, dependencies are now correctly written with semver format (e.g., `"axios": "^1.1.0"`) instead of local file paths (e.g., `"axios": "file:demo/axios"`)
|
|
284
|
+
- **Fixed package-lock.json resolved URLs** - Package lock file now properly references npm registry URLs (`https://registry.npmjs.org/...`) instead of local cache paths
|
|
285
|
+
|
|
286
|
+
**Impact:**
|
|
287
|
+
|
|
288
|
+
- Package.json files are now production-ready with proper version numbers
|
|
289
|
+
- Package-lock.json correctly points to official npm registry
|
|
290
|
+
- No more manual editing required after offline installations
|
|
291
|
+
|
|
292
|
+
---
|
|
293
|
+
|
|
277
294
|
## License
|
|
278
295
|
|
|
279
296
|
MIT
|
package/dist/cli.cjs
CHANGED
|
@@ -621,7 +621,7 @@ var require_package = __commonJS({
|
|
|
621
621
|
"package.json"(exports2, module2) {
|
|
622
622
|
module2.exports = {
|
|
623
623
|
name: "offline-npm-manager",
|
|
624
|
-
version: "1.0.
|
|
624
|
+
version: "1.0.7",
|
|
625
625
|
description: "Download npm packages online, install them offline later",
|
|
626
626
|
bin: {
|
|
627
627
|
"offline-npm": "./dist/cli.cjs"
|