platformatic 1.50.0 → 1.51.8

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/cli.js CHANGED
@@ -7,7 +7,6 @@ import { run as runRuntime, compile } from '@platformatic/runtime/runtime.mjs'
7
7
  import { startCommand } from '@platformatic/runtime'
8
8
  import { runService } from '@platformatic/service/service.mjs'
9
9
  import { runComposer } from '@platformatic/composer/composer.mjs'
10
- import { login } from '@platformatic/authenticate/authenticate.js'
11
10
  import { command as client } from '@platformatic/client-cli'
12
11
  import { readFile } from 'fs/promises'
13
12
  import { join } from 'desm'
@@ -59,7 +58,6 @@ program.register('help db', async (args) => runDB(['help', ...args]))
59
58
  program.register('help client', () => client([]))
60
59
  program.register('help runtime', async (args) => runRuntime(['help', ...args]))
61
60
  program.register('help service', async (args) => runService(['help', ...args]))
62
- program.register({ command: 'login', strict: true }, login)
63
61
 
64
62
  const args = minimist(process.argv.slice(2), {
65
63
  boolean: ['help', 'version'],
package/help/help.txt CHANGED
@@ -8,7 +8,6 @@ Welcome to Platformatic. Available commands are:
8
8
  * `gh` - create a new gh action for Platformatic deployments.
9
9
  * `runtime` - start Platformatic Runtime; type `platformatic runtime help` to know more.
10
10
  * `start` - start a Platformatic application.
11
- * `login` - generate a Platformatic login api key.
12
11
  * `client` - generate a Platformatic client.
13
12
  * `ps` - list all Platformatic runtime applications.
14
13
  * `logs` - stream logs for a Platformatic runtime application.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "platformatic",
3
- "version": "1.50.0",
3
+ "version": "1.51.8",
4
4
  "description": "Platformatic CLI",
5
5
  "main": "cli.js",
6
6
  "type": "module",
@@ -51,17 +51,16 @@
51
51
  "pino": "^8.19.0",
52
52
  "pino-pretty": "^11.0.0",
53
53
  "undici": "^6.9.0",
54
- "@platformatic/authenticate": "1.50.0",
55
- "@platformatic/client-cli": "1.50.0",
56
- "@platformatic/composer": "1.50.0",
57
- "@platformatic/control": "1.50.0",
58
- "@platformatic/db": "1.50.0",
59
- "@platformatic/config": "1.50.0",
60
- "@platformatic/frontend-template": "1.50.0",
61
- "@platformatic/runtime": "1.50.0",
62
- "@platformatic/service": "1.50.0",
63
- "create-platformatic": "1.50.0",
64
- "@platformatic/utils": "1.50.0"
54
+ "@platformatic/client-cli": "1.51.8",
55
+ "@platformatic/config": "1.51.8",
56
+ "@platformatic/composer": "1.51.8",
57
+ "@platformatic/control": "1.51.8",
58
+ "@platformatic/frontend-template": "1.51.8",
59
+ "@platformatic/db": "1.51.8",
60
+ "@platformatic/runtime": "1.51.8",
61
+ "@platformatic/utils": "1.51.8",
62
+ "create-platformatic": "1.51.8",
63
+ "@platformatic/service": "1.51.8"
65
64
  },
66
65
  "scripts": {
67
66
  "test": "pnpm run lint && borp --timeout 120000 --concurrency 1",
package/help/login.txt DELETED
@@ -1,10 +0,0 @@
1
- Generate a Platformatic login api key.
2
-
3
- ``` bash
4
- $ platformatic deploy
5
- ```
6
-
7
- Options:
8
-
9
- * `-c, --config FILE` - Specify a path to a global Platformatic config file. Defaults to `~/.platformatic/config.json`.
10
- * `--browser` - Automatically open default browser. If process stdout is a TTY, the default is `true`. Otherwise, the default is `false`.