offline-npm-manager 1.0.8 → 1.0.10

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
@@ -43,10 +43,10 @@ npm install -g offline-npm-manager
43
43
 
44
44
  This installs the `offline-npm` command globally.
45
45
 
46
- ### Offline Installation
46
+ ### uninstall Globally
47
47
 
48
48
  ```bash
49
- npm install -g offline-npm-manager --offline
49
+ npm uninstall -g offline-npm-manager
50
50
  ```
51
51
 
52
52
  ---
@@ -276,20 +276,7 @@ offline-npm add express --deps
276
276
 
277
277
  ## Changelog
278
278
 
279
- ### Version 1.0.07 (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
- - **Updated metadata** - Added proper `install` field with installation command metadata for better package information Ex: npm i -g offline-npm-manager
286
-
287
- **Impact:**
288
-
289
- - Package.json files are now production-ready with proper version numbers
290
- - Package-lock.json correctly points to official npm registry
291
- - No more manual editing required after offline installations
292
- - Installation metadata is now properly documented
279
+ ### Version 1.0.10 (Latest)
293
280
 
294
281
  ---
295
282
 
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.8",
624
+ version: "1.0.10",
625
625
  description: "Download npm packages online, install them offline later",
626
626
  bin: {
627
627
  "offline-npm": "./dist/cli.cjs"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "offline-npm-manager",
3
- "version": "1.0.8",
3
+ "version": "1.0.10",
4
4
  "description": "Download npm packages online, install them offline later",
5
5
  "bin": {
6
6
  "offline-npm": "./dist/cli.cjs"