platformatic 0.28.1 → 0.30.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.
- package/help/start.txt +6 -0
- package/package.json +13 -13
package/help/start.txt
CHANGED
|
@@ -3,3 +3,9 @@ Start a Platformatic application with the following command:
|
|
|
3
3
|
```bash
|
|
4
4
|
$ platformatic start
|
|
5
5
|
```
|
|
6
|
+
|
|
7
|
+
Options:
|
|
8
|
+
|
|
9
|
+
* `-c, --config <path>`: Path to the configuration file.
|
|
10
|
+
* `--inspect[=[host:]port]`: Start the Node.js debugger. `host` defaults to `'127.0.0.1'`. `port` defaults to 9229. Use caution when binding to a public host:port combination.
|
|
11
|
+
* `--inspect-brk[=[host:]port]`: Start the Node.js debugger and block until a client has attached. `host` defaults to `'127.0.0.1'`. `port` defaults to 9229. Use caution when binding to a public host:port combination.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "platformatic",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.30.0",
|
|
4
4
|
"description": "Platformatic CLI",
|
|
5
5
|
"main": "cli.js",
|
|
6
6
|
"type": "module",
|
|
@@ -48,18 +48,18 @@
|
|
|
48
48
|
"minimist": "^1.2.8",
|
|
49
49
|
"pino": "^8.14.1",
|
|
50
50
|
"pino-pretty": "^10.0.0",
|
|
51
|
-
"@platformatic/authenticate": "0.
|
|
52
|
-
"@platformatic/client-cli": "0.
|
|
53
|
-
"@platformatic/composer": "0.
|
|
54
|
-
"@platformatic/config": "0.
|
|
55
|
-
"@platformatic/db": "0.
|
|
56
|
-
"@platformatic/deploy-client": "0.
|
|
57
|
-
"@platformatic/frontend-template": "0.
|
|
58
|
-
"@platformatic/metaconfig": "0.
|
|
59
|
-
"@platformatic/runtime": "0.
|
|
60
|
-
"@platformatic/
|
|
61
|
-
"@platformatic/
|
|
62
|
-
"create-platformatic": "0.
|
|
51
|
+
"@platformatic/authenticate": "0.30.0",
|
|
52
|
+
"@platformatic/client-cli": "0.30.0",
|
|
53
|
+
"@platformatic/composer": "0.30.0",
|
|
54
|
+
"@platformatic/config": "0.30.0",
|
|
55
|
+
"@platformatic/db": "0.30.0",
|
|
56
|
+
"@platformatic/deploy-client": "0.30.0",
|
|
57
|
+
"@platformatic/frontend-template": "0.30.0",
|
|
58
|
+
"@platformatic/metaconfig": "0.30.0",
|
|
59
|
+
"@platformatic/runtime": "0.30.0",
|
|
60
|
+
"@platformatic/service": "0.30.0",
|
|
61
|
+
"@platformatic/start": "0.30.0",
|
|
62
|
+
"create-platformatic": "0.30.0"
|
|
63
63
|
},
|
|
64
64
|
"scripts": {
|
|
65
65
|
"test": "standard | snazzy && c8 --100 tap --no-coverage test/*.test.js",
|