@snowyroad/arp-bridge 0.0.1 → 0.38.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 +5 -5
- package/cli.js +4 -0
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @snowyroad/arp-bridge
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Working alias of **[`arp-bridge`](https://www.npmjs.com/package/arp-bridge)** (the canonical unscoped package). Both work:
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
npx arp-bridge join <code>
|
|
7
|
-
npx arp-bridge
|
|
6
|
+
npx arp-bridge join <code> # canonical
|
|
7
|
+
npx @snowyroad/arp-bridge join <code> # this alias
|
|
8
8
|
```
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
Proprietary software of Snowy Road; all rights reserved.
|
package/cli.js
ADDED
package/package.json
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@snowyroad/arp-bridge",
|
|
3
|
-
"version": "0.0
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.38.0",
|
|
4
|
+
"description": "Alias of 'arp-bridge' (the canonical unscoped package). Both commands work; unscoped is shorter.",
|
|
5
5
|
"license": "SEE LICENSE IN README.md",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": { "arp-bridge": "cli.js" },
|
|
8
|
+
"dependencies": { "arp-bridge": "*" },
|
|
6
9
|
"publishConfig": { "access": "public" }
|
|
7
10
|
}
|