@aepyornis/fastboot.ts 0.0.2 → 0.0.3

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.
Files changed (2) hide show
  1. package/README.md +2 -7
  2. package/package.json +2 -3
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # fastboot.ts
2
2
 
3
3
  ```sh
4
- pnpm install
5
- pnpm run build
4
+ npm install
5
+ npm run build
6
6
  ```
7
7
 
8
8
  src/device.ts handles interfacing with WebUSB and implements fastboot protocol
@@ -10,11 +10,6 @@ pnpm run build
10
10
  src/flasher.ts flashes zip image from a list of instructions
11
11
  src/sparse.ts sparse image utilities Copyright (c) 2021 Danny Lin <danny@kdrag0n.dev>
12
12
 
13
- TODO
14
-
15
- --apply-vbmeta
16
- repack_ramdisk ?
17
-
18
13
  ```js
19
14
  import { FastbootClient, FashbootFlasher } from "@aepyornis/fastboot.ts"
20
15
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aepyornis/fastboot.ts",
3
- "version": "0.0.2",
4
- "description": "fastboot again",
3
+ "version": "0.0.3",
4
+ "description": "Fastboot using WebUSB",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -10,7 +10,6 @@
10
10
  "keywords": [],
11
11
  "author": "Ziggy, Calyx Institute",
12
12
  "license": "MIT",
13
- "packageManager": "pnpm@10.8.0",
14
13
  "devDependencies": {
15
14
  "@eslint/js": "^9.24.0",
16
15
  "@types/w3c-web-usb": "^1.0.10",