platformatic 0.31.1 → 0.32.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/README.md +5 -5
- package/help/upgrade.txt +2 -2
- package/package.json +14 -14
package/README.md
CHANGED
|
@@ -19,16 +19,16 @@ npm create platformatic@latest
|
|
|
19
19
|
npm install platformatic
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
-
Follow our [Quick Start Guide](https://
|
|
22
|
+
Follow our [Quick Start Guide](https://docs.platformatic.dev/docs/getting-started/quick-start-guide)
|
|
23
23
|
guide to get up and running with Platformatic.
|
|
24
24
|
|
|
25
25
|
## Documentation
|
|
26
26
|
|
|
27
|
-
- [Getting Started](https://
|
|
28
|
-
- [Reference](https://
|
|
29
|
-
- [Guides](https://
|
|
27
|
+
- [Getting Started](https://docs.platformatic.dev/docs/category/getting-started)
|
|
28
|
+
- [Reference](https://docs.platformatic.dev/docs/category/reference)
|
|
29
|
+
- [Guides](https://docs.platformatic.dev/docs/category/guides)
|
|
30
30
|
|
|
31
|
-
Check out our full documentation at [
|
|
31
|
+
Check out our full documentation at [docs.platformatic.dev](https://docs.platformatic.dev).
|
|
32
32
|
|
|
33
33
|
## Support
|
|
34
34
|
|
package/help/upgrade.txt
CHANGED
|
@@ -12,5 +12,5 @@ If not specified, the configuration specified will be loaded from `platformatic.
|
|
|
12
12
|
`platformatic.db.yml`, or `platformatic.db.tml`, `platformatic.service.json`,
|
|
13
13
|
`platformatic.service.yml`, or `platformatic.service.tml` in the current directory. You can find more details about
|
|
14
14
|
the configuration format at:
|
|
15
|
-
https://
|
|
16
|
-
https://
|
|
15
|
+
https://docs.platformatic.dev/docs/reference/db/configuration and
|
|
16
|
+
https://docs.platformatic.dev/docs/reference/service/configuration.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "platformatic",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.32.0",
|
|
4
4
|
"description": "Platformatic CLI",
|
|
5
5
|
"main": "cli.js",
|
|
6
6
|
"type": "module",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"platformatic": "cli.js",
|
|
9
9
|
"plt": "cli.js"
|
|
10
10
|
},
|
|
11
|
-
"homepage": "https://
|
|
11
|
+
"homepage": "https://docs.platformatic.dev/",
|
|
12
12
|
"author": "Matteo Collina <hello@matteocollina.com>",
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|
|
@@ -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/service": "0.
|
|
61
|
-
"@platformatic/start": "0.
|
|
62
|
-
"create-platformatic": "0.
|
|
51
|
+
"@platformatic/authenticate": "0.32.0",
|
|
52
|
+
"@platformatic/client-cli": "0.32.0",
|
|
53
|
+
"@platformatic/composer": "0.32.0",
|
|
54
|
+
"@platformatic/config": "0.32.0",
|
|
55
|
+
"@platformatic/db": "0.32.0",
|
|
56
|
+
"@platformatic/deploy-client": "0.32.0",
|
|
57
|
+
"@platformatic/frontend-template": "0.32.0",
|
|
58
|
+
"@platformatic/metaconfig": "0.32.0",
|
|
59
|
+
"@platformatic/runtime": "0.32.0",
|
|
60
|
+
"@platformatic/service": "0.32.0",
|
|
61
|
+
"@platformatic/start": "0.32.0",
|
|
62
|
+
"create-platformatic": "0.32.0"
|
|
63
63
|
},
|
|
64
64
|
"scripts": {
|
|
65
65
|
"test": "standard | snazzy && c8 --100 tap --no-coverage test/*.test.js",
|