pogl-cli 0.1.0 → 0.1.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/README.md +15 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Pogl
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Deploy web games to [Pogl](https://play.pogl.com).
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
npx pogl login
|
|
7
|
-
npx pogl deploy
|
|
6
|
+
npx pogl-cli login # link your account (opens the browser)
|
|
7
|
+
npx pogl-cli deploy # deploy the current directory
|
|
8
|
+
npx pogl-cli logout # unlink
|
|
8
9
|
```
|
|
9
10
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
`deploy` runs from your game folder (where `index.html` lives). The first
|
|
12
|
+
deploy creates the game (or links an existing one); every deploy after that
|
|
13
|
+
ships a new version instantly.
|
|
14
|
+
|
|
15
|
+
Install globally to use the short command:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm i -g pogl-cli
|
|
19
|
+
pogl deploy
|
|
20
|
+
```
|