platformatic 1.42.0 → 1.44.0

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/cli.js +1 -0
  2. package/package.json +13 -13
package/cli.js CHANGED
@@ -58,6 +58,7 @@ program.register('client', client)
58
58
  program.register('compile', compile)
59
59
  program.register('help', help.toStdout)
60
60
  program.register('help db', async (args) => runDB(['help', ...args]))
61
+ program.register('help client', () => client([]))
61
62
  program.register('help runtime', async (args) => runRuntime(['help', ...args]))
62
63
  program.register('help service', async (args) => runService(['help', ...args]))
63
64
  program.register({ command: 'login', strict: true }, login)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "platformatic",
3
- "version": "1.42.0",
3
+ "version": "1.44.0",
4
4
  "description": "Platformatic CLI",
5
5
  "main": "cli.js",
6
6
  "type": "module",
@@ -51,18 +51,18 @@
51
51
  "pino": "^8.19.0",
52
52
  "pino-pretty": "^11.0.0",
53
53
  "undici": "^6.9.0",
54
- "@platformatic/authenticate": "1.42.0",
55
- "@platformatic/client-cli": "1.42.0",
56
- "@platformatic/composer": "1.42.0",
57
- "@platformatic/config": "1.42.0",
58
- "@platformatic/db": "1.42.0",
59
- "@platformatic/frontend-template": "1.42.0",
60
- "@platformatic/deploy-client": "1.42.0",
61
- "@platformatic/runtime": "1.42.0",
62
- "@platformatic/service": "1.42.0",
63
- "@platformatic/utils": "1.42.0",
64
- "create-platformatic": "1.42.0",
65
- "@platformatic/control": "1.42.0"
54
+ "@platformatic/authenticate": "1.44.0",
55
+ "@platformatic/client-cli": "1.44.0",
56
+ "@platformatic/composer": "1.44.0",
57
+ "@platformatic/config": "1.44.0",
58
+ "@platformatic/control": "1.44.0",
59
+ "@platformatic/db": "1.44.0",
60
+ "@platformatic/frontend-template": "1.44.0",
61
+ "@platformatic/deploy-client": "1.44.0",
62
+ "@platformatic/runtime": "1.44.0",
63
+ "create-platformatic": "1.44.0",
64
+ "@platformatic/service": "1.44.0",
65
+ "@platformatic/utils": "1.44.0"
66
66
  },
67
67
  "scripts": {
68
68
  "test": "pnpm run lint && borp --timeout 120000 --concurrency 1",