@goliapkg/sentori-cli 0.1.0 → 0.2.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 +12 -2
- package/bin/sentori-cli.js +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,8 +5,8 @@ Thin npm wrapper around the [Sentori](https://sentori.golia.jp) Rust CLI. The pa
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
7
|
```sh
|
|
8
|
-
|
|
9
|
-
# or
|
|
8
|
+
npm install -D @goliapkg/sentori-cli
|
|
9
|
+
# or pnpm / yarn
|
|
10
10
|
|
|
11
11
|
npx @goliapkg/sentori-cli upload sourcemap \
|
|
12
12
|
--release myapp@1.2.3+456 \
|
|
@@ -15,6 +15,16 @@ npx @goliapkg/sentori-cli upload sourcemap \
|
|
|
15
15
|
dist/bundle.js.map
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
+
### Using bun
|
|
19
|
+
|
|
20
|
+
Bun blocks postinstall scripts by default. After `bun add`, run:
|
|
21
|
+
|
|
22
|
+
```sh
|
|
23
|
+
bun pm trust @goliapkg/sentori-cli
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
once to allow the binary download, or use `bun add --trust @goliapkg/sentori-cli` from the start.
|
|
27
|
+
|
|
18
28
|
Supported platforms:
|
|
19
29
|
|
|
20
30
|
| OS | Arch |
|
package/bin/sentori-cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@goliapkg/sentori-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Sentori CLI — upload source maps + other release artifacts to a Sentori server. Thin wrapper that downloads the matching prebuilt Rust binary at install time.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://sentori.golia.jp",
|