@gengjiawen/os-init 1.9.0 → 1.9.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.9.1](https://github.com/gengjiawen/os-init/compare/v1.9.0...v1.9.1) (2025-11-26)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * update unzip-url package version to 1.1.0 in package.json and pnpm-lock.yaml ([e800522](https://github.com/gengjiawen/os-init/commit/e8005229e0a4d28a91e0c82aceec4e41150ec8dc))
9
+
3
10
  ## [1.9.0](https://github.com/gengjiawen/os-init/compare/v1.8.0...v1.9.0) (2025-11-21)
4
11
 
5
12
 
package/android-setup.md CHANGED
@@ -58,7 +58,7 @@ os-init set-android --skip-env-vars
58
58
  - Internet connection to download Android SDK
59
59
  - Node.js 22.12.0 or higher
60
60
 
61
- The script uses `@compilets/unzip-url` package to download and extract the Android SDK, so no external `curl` or `unzip` tools are required. No sudo access is needed as the SDK is installed in your home directory.
61
+ The script uses `@gengjiawen/unzip-url` package to download and extract the Android SDK, so no external `curl` or `unzip` tools are required. No sudo access is needed as the SDK is installed in your home directory.
62
62
 
63
63
  ## Environment Variables
64
64
 
@@ -93,11 +93,13 @@ sdkmanager --list
93
93
  ## Platform-Specific Notes
94
94
 
95
95
  ### macOS
96
+
96
97
  - The SDK is downloaded from Google's macOS-specific distribution
97
98
  - Works on both Intel and Apple Silicon Macs
98
99
  - No sudo permissions required
99
100
 
100
101
  ### Linux
102
+
101
103
  - The SDK is downloaded from Google's Linux-specific distribution
102
104
  - Tested on Ubuntu and Debian-based systems
103
105
  - No sudo permissions required when installing to home directory
@@ -124,5 +126,3 @@ If the Android SDK download fails, check your internet connection and try again.
124
126
  - **Build Tools 36.0.0** - Tools for building Android apps
125
127
  - **CMake 3.30.5** - For native code compilation
126
128
  - **NDK 29.0.14206865** - Native Development Kit for C/C++ code
127
-
128
-
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gengjiawen/os-init",
3
3
  "private": false,
4
- "version": "1.9.0",
4
+ "version": "1.9.1",
5
5
  "description": "",
6
6
  "main": "index.js",
7
7
  "bin": {
@@ -19,7 +19,7 @@
19
19
  "postbuild": "cpy '**/*' '!**/*.ts' ../build/ --cwd=libs --parents"
20
20
  },
21
21
  "dependencies": {
22
- "@gengjiawen/unzip-url": "^1.0.0",
22
+ "@gengjiawen/unzip-url": "^1.1.0",
23
23
  "commander": "^12.1.0",
24
24
  "ip": "^2.0.1",
25
25
  "execa": "^8.0.1"
@@ -38,13 +38,13 @@
38
38
  "@types/ip": "^1.1.3",
39
39
  "@types/jest": "29.5.12",
40
40
  "@types/node": "24.1.0",
41
- "cpy-cli": "^4.2.0",
41
+ "cpy-cli": "^6.0.0",
42
42
  "husky": "9.1.6",
43
43
  "jest": "29.7.0",
44
44
  "lint-staged": "^15.2.2",
45
45
  "nodemon": "3.1.4",
46
46
  "prettier": "3.5.3",
47
- "rimraf": "5.0.5",
47
+ "rimraf": "6.1.2",
48
48
  "ts-jest": "29.2.4",
49
49
  "ts-node": "^10.9.1",
50
50
  "typescript": "5.6.3"