@hapico/cli 0.0.7 → 0.0.9
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/bin/index.js +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +2 -2
package/bin/index.js
CHANGED
|
@@ -288,7 +288,7 @@ class RoomState {
|
|
|
288
288
|
return this.isConnected;
|
|
289
289
|
}
|
|
290
290
|
}
|
|
291
|
-
commander_1.program.version("
|
|
291
|
+
commander_1.program.version("0.0.9").description("Hapico CLI for project management");
|
|
292
292
|
commander_1.program
|
|
293
293
|
.command("clone <id>")
|
|
294
294
|
.description("Clone a project by ID")
|
package/dist/index.js
CHANGED
|
@@ -288,7 +288,7 @@ class RoomState {
|
|
|
288
288
|
return this.isConnected;
|
|
289
289
|
}
|
|
290
290
|
}
|
|
291
|
-
commander_1.program.version("
|
|
291
|
+
commander_1.program.version("0.0.9").description("Hapico CLI for project management");
|
|
292
292
|
commander_1.program
|
|
293
293
|
.command("clone <id>")
|
|
294
294
|
.description("Clone a project by ID")
|
package/index.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hapico/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "A simple CLI tool for project management",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "tsc && cp -r dist/* ./bin/",
|
|
11
11
|
"start": "node dist/index.js",
|
|
12
|
-
"
|
|
12
|
+
"pub": "npm run build && npm publish --access public"
|
|
13
13
|
},
|
|
14
14
|
"keywords": [
|
|
15
15
|
"cli",
|