@strav/spring 0.4.14 → 0.4.16

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@strav/spring",
3
- "version": "0.4.14",
3
+ "version": "0.4.16",
4
4
  "type": "module",
5
5
  "description": "Flagship framework scaffolding tool for the Strav ecosystem.",
6
6
  "license": "MIT",
@@ -22,7 +22,7 @@
22
22
  "README.md"
23
23
  ],
24
24
  "dependencies": {
25
- "@strav/kernel": "0.4.14"
25
+ "@strav/kernel": "0.4.16"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/bun": "latest"
@@ -1,20 +1,2 @@
1
1
  #!/usr/bin/env bun
2
- import 'reflect-metadata'
3
- import { app } from '@strav/kernel'
4
- import { ConfigProvider, EncryptionProvider } from '@strav/kernel'
5
- import { DatabaseProvider } from '@strav/database'
6
- import { CliProvider } from '@strav/cli'
7
-
8
- // Register service providers
9
- app
10
- .use(new ConfigProvider())
11
- .use(new DatabaseProvider())
12
- .use(new EncryptionProvider())
13
- .use(new CliProvider())
14
-
15
- // Boot services
16
- await app.start()
17
-
18
- // Start CLI
19
- const cli = app.resolve('cli')
20
- await cli.handle(process.argv.slice(2))
2
+ import '@strav/cli/cli/strav'