@42ws/cli 0.0.1 → 0.0.2

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 CHANGED
@@ -1,12 +1,12 @@
1
- # 42ws
1
+ # @42ws/cli
2
2
 
3
3
  Publish static sites in one command.
4
4
 
5
5
  ## Usage
6
6
 
7
7
  ```
8
- npx 42ws@latest login --token ws_xxx
9
- npx 42ws@latest publish --site my-site --dir dist
8
+ npx @42ws/cli@latest login --token ws_xxx
9
+ npx @42ws/cli@latest publish --site my-site --dir dist
10
10
  ```
11
11
 
12
12
  ## Commands
package/dist/index.js CHANGED
@@ -2,7 +2,7 @@ import { login } from './commands/login.js';
2
2
  import { whoami } from './commands/whoami.js';
3
3
  import { publish } from './commands/publish.js';
4
4
  import { setJsonMode } from './lib/output.js';
5
- const VERSION = '0.1.0';
5
+ const VERSION = '0.0.2';
6
6
  const HELP = `
7
7
  42ws — Publish static sites in one command
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@42ws/cli",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Publish static sites in one command",
5
5
  "publishConfig": {
6
6
  "access": "public"