dsh-quick-actions 0.1.0-rc.4 → 0.1.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.en.md +1 -1
- package/README.md +1 -1
- package/package.json +1 -1
package/README.en.md
CHANGED
|
@@ -50,7 +50,7 @@ Then restart the web profile. One package is the whole thing: it carries `dsh.bu
|
|
|
50
50
|
```sh
|
|
51
51
|
mkdir -p /tmp/quick-actions
|
|
52
52
|
pnpm --filter dsh-quick-actions pack --pack-destination /tmp/quick-actions
|
|
53
|
-
dsh plugin --profile web add /tmp/quick-actions/dsh-quick-actions-0.1.0
|
|
53
|
+
dsh plugin --profile web add /tmp/quick-actions/dsh-quick-actions-0.1.0.tgz
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
The `--filter` form works from anywhere in the repository; from the package directory itself, `pnpm pack --pack-destination /tmp/quick-actions` is the same thing.
|
package/README.md
CHANGED
|
@@ -50,7 +50,7 @@ dsh plugin --profile web add dsh-quick-actions
|
|
|
50
50
|
```sh
|
|
51
51
|
mkdir -p /tmp/quick-actions
|
|
52
52
|
pnpm --filter dsh-quick-actions pack --pack-destination /tmp/quick-actions
|
|
53
|
-
dsh plugin --profile web add /tmp/quick-actions/dsh-quick-actions-0.1.0
|
|
53
|
+
dsh plugin --profile web add /tmp/quick-actions/dsh-quick-actions-0.1.0.tgz
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
上面的 `--filter` 形式在仓库任意位置都能用;如果你已经在包目录里,`pnpm pack --pack-destination /tmp/quick-actions` 即可。
|