@hs-x/cli 0.2.3 → 0.2.4
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/dist/commands/deploy.d.ts +45 -0
- package/dist/commands/deploy.d.ts.map +1 -1
- package/dist/commands/deploy.js +151 -6
- package/dist/commands/deploy.js.map +1 -1
- package/dist/commands/dev.d.ts.map +1 -1
- package/dist/commands/dev.js +149 -14
- package/dist/commands/dev.js.map +1 -1
- package/dist/commands/status.js +49 -4
- package/dist/commands/status.js.map +1 -1
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/package.json +7 -7
package/dist/constants.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// `^${CLI_VERSION}` @hs-x/* dependency ranges. MUST equal package.json's
|
|
3
3
|
// version (version-sync.test.ts enforces it): @hs-x/cli@0.1.3 shipped
|
|
4
4
|
// reporting 0.1.0, which read as a stale install.
|
|
5
|
-
export const CLI_VERSION = '0.2.
|
|
5
|
+
export const CLI_VERSION = '0.2.4';
|
|
6
6
|
/** Brand orange (#ff5e1f) as ANSI 24-bit foreground SGR parameters. */
|
|
7
7
|
export const BRAND_ORANGE_SGR = '38;2;255;94;31';
|
|
8
8
|
//# sourceMappingURL=constants.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hs-x/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "HS-X CLI — init, validate, connect, dev, deploy, promote, rollback, doctor, sync. Installs the `hs-x` command.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
"@effect/cli": "0.75.1",
|
|
21
21
|
"@effect/platform": "0.96.1",
|
|
22
22
|
"@effect/platform-bun": "0.89.0",
|
|
23
|
-
"@hs-x/codegen": "0.2.
|
|
24
|
-
"@hs-x/hubspot": "0.2.
|
|
25
|
-
"@hs-x/hubspot-cli": "0.2.
|
|
26
|
-
"@hs-x/runtime": "0.2.
|
|
27
|
-
"@hs-x/types": "0.2.
|
|
28
|
-
"@hs-x/validator": "0.2.
|
|
23
|
+
"@hs-x/codegen": "0.2.4",
|
|
24
|
+
"@hs-x/hubspot": "0.2.4",
|
|
25
|
+
"@hs-x/hubspot-cli": "0.2.4",
|
|
26
|
+
"@hs-x/runtime": "0.2.4",
|
|
27
|
+
"@hs-x/types": "0.2.4",
|
|
28
|
+
"@hs-x/validator": "0.2.4",
|
|
29
29
|
"effect": "^3.10.19"
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|