platformatic 3.0.0-alpha.1 → 3.0.0-alpha.5

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 CHANGED
@@ -1,4 +1,4 @@
1
- ![The Platformatic logo](https://github.com/platformatic/platformatic/raw/HEAD/assets/banner-light.png 'The Platformatic logo')
1
+ ![The Platformatic logo](https://github.com/platformatic/platformatic/raw/HEAD/assets/banner-light.png)
2
2
 
3
3
  <p align="center">
4
4
  <br/>
@@ -25,8 +25,8 @@ guide to get up and running with Platformatic.
25
25
  ## Documentation
26
26
 
27
27
  - [Getting Started](https://docs.platformatic.dev/docs/getting-started/quick-start-guide)
28
- - [CLI](https://docs.platformatic.dev/docs/cli)
29
- - [Guides](https://docs.platformatic.dev/docs/guides/movie-quotes-app-tutorial)
28
+ - [CLI](https://docs.platformatic.dev/docs/reference/platformatic/cli)
29
+ - [Guides](https://docs.platformatic.dev/docs/guides/build-modular-monolith)
30
30
 
31
31
  Check out our full documentation at [docs.platformatic.dev](https://docs.platformatic.dev).
32
32
 
@@ -1,8 +1,9 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- import { checkNodeVersionForServices } from '@platformatic/utils'
4
- import { main, setExecutableParameters } from 'wattpm'
3
+ import { checkNodeVersionForServices, setExecutableId, setExecutableName } from '@platformatic/foundation'
4
+ import { main } from 'wattpm'
5
5
 
6
- setExecutableParameters('platformatic', 'Platformatic')
6
+ setExecutableId('platformatic')
7
+ setExecutableName('Platformatic')
7
8
  checkNodeVersionForServices()
8
9
  await main()
package/bin/plt.js CHANGED
@@ -1,8 +1,9 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- import { checkNodeVersionForServices } from '@platformatic/utils'
4
- import { main, setExecutableParameters } from 'wattpm'
3
+ import { checkNodeVersionForServices, setExecutableId, setExecutableName } from '@platformatic/foundation'
4
+ import { main } from 'wattpm'
5
5
 
6
- setExecutableParameters('plt', 'Platformatic')
6
+ setExecutableId('plt')
7
+ setExecutableName('Platformatic')
7
8
  checkNodeVersionForServices()
8
9
  await main()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "platformatic",
3
- "version": "3.0.0-alpha.1",
3
+ "version": "3.0.0-alpha.5",
4
4
  "description": "Platformatic CLI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -34,8 +34,11 @@
34
34
  "typescript": "^5.5.3"
35
35
  },
36
36
  "dependencies": {
37
- "@platformatic/utils": "3.0.0-alpha.1",
38
- "wattpm": "3.0.0-alpha.1"
37
+ "@platformatic/foundation": "3.0.0-alpha.5",
38
+ "wattpm": "3.0.0-alpha.5"
39
+ },
40
+ "engines": {
41
+ "node": ">=22.18.0"
39
42
  },
40
43
  "scripts": {
41
44
  "test": "pnpm run lint && borp --timeout 1200000 --concurrency 1",