create-absolutejs 0.15.6 → 0.16.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/dist/data.js +13 -13
- package/dist/generators/configurations/generatePackageJson.js +2 -2
- package/dist/scaffold.js +1 -1
- package/dist/versions.d.ts +18 -18
- package/dist/versions.js +18 -18
- package/package.json +3 -3
package/dist/data.js
CHANGED
|
@@ -55,15 +55,15 @@ export const availableORMs = ['drizzle', 'prisma', 'none'];
|
|
|
55
55
|
export const availablePlugins = [
|
|
56
56
|
{
|
|
57
57
|
imports: [{ config: null, isPlugin: true, packageName: 'cors' }],
|
|
58
|
-
label: cyan('⚙️ @
|
|
59
|
-
latestVersion: versions['@
|
|
60
|
-
value: '@
|
|
58
|
+
label: cyan('⚙️ @elysia/cors'),
|
|
59
|
+
latestVersion: versions['@elysia/cors'],
|
|
60
|
+
value: '@elysia/cors'
|
|
61
61
|
},
|
|
62
62
|
{
|
|
63
|
-
imports: [{ config: null, isPlugin: true, packageName: '
|
|
64
|
-
label: cyan('📑 @
|
|
65
|
-
latestVersion: versions['@
|
|
66
|
-
value: '@
|
|
63
|
+
imports: [{ config: null, isPlugin: true, packageName: 'openapi' }],
|
|
64
|
+
label: cyan('📑 @elysia/openapi'),
|
|
65
|
+
latestVersion: versions['@elysia/openapi'],
|
|
66
|
+
value: '@elysia/openapi'
|
|
67
67
|
},
|
|
68
68
|
{
|
|
69
69
|
imports: [{ config: null, isPlugin: true, packageName: 'rateLimit' }],
|
|
@@ -99,12 +99,12 @@ export const defaultPlugins = [
|
|
|
99
99
|
value: '@absolutejs/absolute'
|
|
100
100
|
},
|
|
101
101
|
{
|
|
102
|
-
latestVersion: versions['@
|
|
103
|
-
value: '@
|
|
102
|
+
latestVersion: versions['@elysia/eden'],
|
|
103
|
+
value: '@elysia/eden'
|
|
104
104
|
},
|
|
105
105
|
{
|
|
106
|
-
latestVersion: versions['@
|
|
107
|
-
value: '@
|
|
106
|
+
latestVersion: versions['@elysia/static'],
|
|
107
|
+
value: '@elysia/static'
|
|
108
108
|
}
|
|
109
109
|
];
|
|
110
110
|
export const eslintAndPrettierDependencies = [
|
|
@@ -195,6 +195,6 @@ export const scopedStatePlugin = {
|
|
|
195
195
|
packageName: 'scopedState'
|
|
196
196
|
}
|
|
197
197
|
],
|
|
198
|
-
latestVersion: versions['
|
|
199
|
-
value: '
|
|
198
|
+
latestVersion: versions['@absolutejs/scoped-state'],
|
|
199
|
+
value: '@absolutejs/scoped-state'
|
|
200
200
|
};
|
|
@@ -90,7 +90,7 @@ export const createPackageJson = async ({ agentic, projectName, authOption, plug
|
|
|
90
90
|
if (flags.requiresVue)
|
|
91
91
|
packageNames.add('vue');
|
|
92
92
|
if (flags.requiresHtmx)
|
|
93
|
-
packageNames.add('
|
|
93
|
+
packageNames.add('@absolutejs/scoped-state');
|
|
94
94
|
if (orm === 'drizzle')
|
|
95
95
|
packageNames.add('drizzle-orm');
|
|
96
96
|
switch (databaseHost) {
|
|
@@ -223,7 +223,7 @@ export const createPackageJson = async ({ agentic, projectName, authOption, plug
|
|
|
223
223
|
dependencies['vue'] = resolveVersion('vue', versions['vue']);
|
|
224
224
|
}
|
|
225
225
|
if (flags.requiresHtmx) {
|
|
226
|
-
dependencies['
|
|
226
|
+
dependencies['@absolutejs/scoped-state'] = resolveVersion('@absolutejs/scoped-state', versions['@absolutejs/scoped-state']);
|
|
227
227
|
}
|
|
228
228
|
if (orm === 'drizzle') {
|
|
229
229
|
dependencies['drizzle-orm'] = resolveVersion('drizzle-orm', versions['drizzle-orm']);
|
package/dist/scaffold.js
CHANGED
|
@@ -90,7 +90,7 @@ export const scaffold = async ({ response: { agentic, projectName, codeQualityTo
|
|
|
90
90
|
});
|
|
91
91
|
const utilsDirectory = join(frontendDirectory, 'utils');
|
|
92
92
|
mkdirSync(utilsDirectory, { recursive: true });
|
|
93
|
-
writeFileSync(join(utilsDirectory, 'edenTreaty.ts'), `import { treaty } from '@
|
|
93
|
+
writeFileSync(join(utilsDirectory, 'edenTreaty.ts'), `import { treaty } from '@elysia/eden'
|
|
94
94
|
import type { Server } from '../../backend/server'
|
|
95
95
|
|
|
96
96
|
const serverUrl =
|
package/dist/versions.d.ts
CHANGED
|
@@ -4,26 +4,26 @@
|
|
|
4
4
|
* Run `bun run check-versions` to compare against latest npm versions.
|
|
5
5
|
*/
|
|
6
6
|
export declare const versions: {
|
|
7
|
-
readonly '@absolutejs/absolute': "0.
|
|
8
|
-
readonly '@absolutejs/a2a': "0.
|
|
9
|
-
readonly '@absolutejs/agency': "0.
|
|
7
|
+
readonly '@absolutejs/absolute': "0.20.0-beta.0";
|
|
8
|
+
readonly '@absolutejs/a2a': "0.3.2";
|
|
9
|
+
readonly '@absolutejs/agency': "0.6.3";
|
|
10
10
|
readonly '@absolutejs/agent-conformance': "0.3.0";
|
|
11
11
|
readonly '@absolutejs/agent-discovery': "0.1.0";
|
|
12
|
-
readonly '@absolutejs/agent-inbox': "0.
|
|
13
|
-
readonly '@absolutejs/agent-memory': "0.1.
|
|
14
|
-
readonly '@absolutejs/agent-runtime': "0.
|
|
12
|
+
readonly '@absolutejs/agent-inbox': "0.3.3";
|
|
13
|
+
readonly '@absolutejs/agent-memory': "0.1.5";
|
|
14
|
+
readonly '@absolutejs/agent-runtime': "0.2.3";
|
|
15
15
|
readonly '@absolutejs/agent-sandbox': "0.1.0";
|
|
16
16
|
readonly '@absolutejs/agent-trust': "0.1.0";
|
|
17
|
-
readonly '@absolutejs/agent-control': "0.
|
|
18
|
-
readonly '@absolutejs/auth': "0.
|
|
17
|
+
readonly '@absolutejs/agent-control': "0.5.3";
|
|
18
|
+
readonly '@absolutejs/auth': "0.56.17";
|
|
19
19
|
readonly '@absolutejs/egress': "0.1.0";
|
|
20
|
-
readonly '@absolutejs/execution': "0.
|
|
21
|
-
readonly '@absolutejs/manifest': "0.
|
|
22
|
-
readonly '@absolutejs/mcp': "0.
|
|
20
|
+
readonly '@absolutejs/execution': "0.14.4";
|
|
21
|
+
readonly '@absolutejs/manifest': "0.9.0";
|
|
22
|
+
readonly '@absolutejs/mcp': "0.12.0";
|
|
23
23
|
readonly '@absolutejs/policy': "0.2.0";
|
|
24
24
|
readonly '@absolutejs/secrets': "0.7.0";
|
|
25
25
|
readonly '@absolutejs/sync-bus-pg': "0.2.0";
|
|
26
|
-
readonly '@absolutejs/wallet': "0.
|
|
26
|
+
readonly '@absolutejs/wallet': "0.8.6";
|
|
27
27
|
readonly '@angular/common': "21.2.0";
|
|
28
28
|
readonly '@angular/compiler': "21.2.0";
|
|
29
29
|
readonly '@angular/compiler-cli': "21.2.0";
|
|
@@ -31,10 +31,10 @@ export declare const versions: {
|
|
|
31
31
|
readonly '@angular/platform-browser': "21.2.0";
|
|
32
32
|
readonly '@angular/platform-server': "21.2.0";
|
|
33
33
|
readonly '@angular/ssr': "21.2.0";
|
|
34
|
-
readonly '@
|
|
35
|
-
readonly '@
|
|
36
|
-
readonly '@
|
|
37
|
-
readonly '@
|
|
34
|
+
readonly '@elysia/cors': "2.0.0-beta.1";
|
|
35
|
+
readonly '@elysia/eden': "2.0.0-beta.5";
|
|
36
|
+
readonly '@elysia/openapi': "2.0.0-beta.1";
|
|
37
|
+
readonly '@elysia/static': "2.0.0-beta.2";
|
|
38
38
|
readonly '@eslint/compat': "2.0.2";
|
|
39
39
|
readonly '@eslint/js': "9.39.2";
|
|
40
40
|
readonly '@libsql/client': "0.17.0";
|
|
@@ -50,9 +50,9 @@ export declare const versions: {
|
|
|
50
50
|
readonly autoprefixer: "10.4.24";
|
|
51
51
|
readonly 'drizzle-kit': "1.0.0-rc.4";
|
|
52
52
|
readonly 'drizzle-orm': "1.0.0-rc.4";
|
|
53
|
-
readonly elysia: "
|
|
53
|
+
readonly elysia: "2.0.0-beta.6";
|
|
54
54
|
readonly 'elysia-rate-limit': "4.5.0";
|
|
55
|
-
readonly '
|
|
55
|
+
readonly '@absolutejs/scoped-state': "0.2.0";
|
|
56
56
|
readonly eslint: "9.39.2";
|
|
57
57
|
readonly 'eslint-plugin-absolute': "0.11.13";
|
|
58
58
|
readonly 'eslint-plugin-import': "2.32.0";
|
package/dist/versions.js
CHANGED
|
@@ -5,26 +5,26 @@
|
|
|
5
5
|
*/
|
|
6
6
|
export const versions = {
|
|
7
7
|
/* ── Core ─────────────────────────────────────────────── */
|
|
8
|
-
'@absolutejs/absolute': '0.
|
|
9
|
-
'@absolutejs/a2a': '0.
|
|
10
|
-
'@absolutejs/agency': '0.
|
|
8
|
+
'@absolutejs/absolute': '0.20.0-beta.0',
|
|
9
|
+
'@absolutejs/a2a': '0.3.2',
|
|
10
|
+
'@absolutejs/agency': '0.6.3',
|
|
11
11
|
'@absolutejs/agent-conformance': '0.3.0',
|
|
12
12
|
'@absolutejs/agent-discovery': '0.1.0',
|
|
13
|
-
'@absolutejs/agent-inbox': '0.
|
|
14
|
-
'@absolutejs/agent-memory': '0.1.
|
|
15
|
-
'@absolutejs/agent-runtime': '0.
|
|
13
|
+
'@absolutejs/agent-inbox': '0.3.3',
|
|
14
|
+
'@absolutejs/agent-memory': '0.1.5',
|
|
15
|
+
'@absolutejs/agent-runtime': '0.2.3',
|
|
16
16
|
'@absolutejs/agent-sandbox': '0.1.0',
|
|
17
17
|
'@absolutejs/agent-trust': '0.1.0',
|
|
18
|
-
'@absolutejs/agent-control': '0.
|
|
19
|
-
'@absolutejs/auth': '0.
|
|
18
|
+
'@absolutejs/agent-control': '0.5.3',
|
|
19
|
+
'@absolutejs/auth': '0.56.17',
|
|
20
20
|
'@absolutejs/egress': '0.1.0',
|
|
21
|
-
'@absolutejs/execution': '0.
|
|
22
|
-
'@absolutejs/manifest': '0.
|
|
23
|
-
'@absolutejs/mcp': '0.
|
|
21
|
+
'@absolutejs/execution': '0.14.4',
|
|
22
|
+
'@absolutejs/manifest': '0.9.0',
|
|
23
|
+
'@absolutejs/mcp': '0.12.0',
|
|
24
24
|
'@absolutejs/policy': '0.2.0',
|
|
25
25
|
'@absolutejs/secrets': '0.7.0',
|
|
26
26
|
'@absolutejs/sync-bus-pg': '0.2.0',
|
|
27
|
-
'@absolutejs/wallet': '0.
|
|
27
|
+
'@absolutejs/wallet': '0.8.6',
|
|
28
28
|
/* ── Angular ─────────────────────────────────────────── */
|
|
29
29
|
'@angular/common': '21.2.0',
|
|
30
30
|
'@angular/compiler': '21.2.0',
|
|
@@ -33,11 +33,11 @@ export const versions = {
|
|
|
33
33
|
'@angular/platform-browser': '21.2.0',
|
|
34
34
|
'@angular/platform-server': '21.2.0',
|
|
35
35
|
'@angular/ssr': '21.2.0',
|
|
36
|
-
'@
|
|
36
|
+
'@elysia/cors': '2.0.0-beta.1',
|
|
37
37
|
/* ── Plugins ──────────────────────────────────────────── */
|
|
38
|
-
'@
|
|
39
|
-
'@
|
|
40
|
-
'@
|
|
38
|
+
'@elysia/eden': '2.0.0-beta.5',
|
|
39
|
+
'@elysia/openapi': '2.0.0-beta.1',
|
|
40
|
+
'@elysia/static': '2.0.0-beta.2',
|
|
41
41
|
/* ── ESLint + Prettier ────────────────────────────────── */
|
|
42
42
|
'@eslint/compat': '2.0.2',
|
|
43
43
|
'@eslint/js': '9.39.2',
|
|
@@ -60,9 +60,9 @@ export const versions = {
|
|
|
60
60
|
/* ── ORM ──────────────────────────────────────────────── */
|
|
61
61
|
'drizzle-kit': '1.0.0-rc.4',
|
|
62
62
|
'drizzle-orm': '1.0.0-rc.4',
|
|
63
|
-
elysia: '
|
|
63
|
+
elysia: '2.0.0-beta.6',
|
|
64
64
|
'elysia-rate-limit': '4.5.0',
|
|
65
|
-
'
|
|
65
|
+
'@absolutejs/scoped-state': '0.2.0',
|
|
66
66
|
eslint: '9.39.2',
|
|
67
67
|
'eslint-plugin-absolute': '0.11.13',
|
|
68
68
|
'eslint-plugin-import': '2.32.0',
|
package/package.json
CHANGED
|
@@ -4,13 +4,13 @@
|
|
|
4
4
|
"create-absolutejs": "dist/index.js"
|
|
5
5
|
},
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@absolutejs/auth": "0.
|
|
7
|
+
"@absolutejs/auth": "0.56.17",
|
|
8
8
|
"@clack/prompts": "1.0.0",
|
|
9
9
|
"picocolors": "1.1.1"
|
|
10
10
|
},
|
|
11
11
|
"description": "A CLI tool to create a new AbsoluteJS project",
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"@absolutejs/absolute": "0.
|
|
13
|
+
"@absolutejs/absolute": "0.20.0-beta.0",
|
|
14
14
|
"@eslint/compat": "2.0.2",
|
|
15
15
|
"@stylistic/eslint-plugin": "5.9.0",
|
|
16
16
|
"@types/bun": "1.3.8",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"typecheck": "bun run tsc --noEmit"
|
|
55
55
|
},
|
|
56
56
|
"type": "module",
|
|
57
|
-
"version": "0.
|
|
57
|
+
"version": "0.16.0"
|
|
58
58
|
}
|