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.
Files changed (2) hide show
  1. package/README.md +15 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,12 +1,20 @@
1
- # pogl
1
+ # Pogl
2
2
 
3
- Pogl에 웹게임을 배포하는 CLI — Vercel처럼.
3
+ Deploy web games to [Pogl](https://play.pogl.com).
4
4
 
5
5
  ```bash
6
- npx pogl login # 브라우저가 열리고, 승인 번으로 연동
7
- npx pogl deploy # 게임 폴더(index.html이 있는 곳)에서 실행
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
- - 첫 `deploy`는 AI 검토·개조 판을 만듭니다 ( 게임/기존 게임 연결 선택).
11
- - 뒤의 `deploy`는 게임에 바로 재배포됩니다 승인 없음.
12
- - 사이트 주소는 `POGL_SITE` 환경변수로 바꿀 수 있습니다 (기본 https://play.pogl.com).
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
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pogl-cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Pogl CLI — deploy your web game like Vercel (npx pogl-cli login / deploy)",
5
5
  "type": "module",
6
6
  "bin": {