@appweaver/create-weaver-app 1.0.7 → 1.0.9
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/create-weaver-app.js
CHANGED
|
@@ -190,16 +190,16 @@ function getNodeDependencies(command, runtime) {
|
|
|
190
190
|
dependencies.push(`"@prisma/client": "${prismaVersion}"`);
|
|
191
191
|
dependencies.push(`"prisma": "${prismaVersion}"`);
|
|
192
192
|
if (!command.getOptionValue('noQueue')) {
|
|
193
|
-
dependencies.push('"bullmq": "5.
|
|
193
|
+
dependencies.push('"bullmq": "5.79.1"');
|
|
194
194
|
}
|
|
195
195
|
if (!command.getOptionValue('noCron')) {
|
|
196
196
|
dependencies.push('"cron": "4.4.0"');
|
|
197
197
|
}
|
|
198
198
|
if (!command.getOptionValue('noRedis')) {
|
|
199
|
-
dependencies.push('"ioredis": "5.
|
|
199
|
+
dependencies.push('"ioredis": "5.11.1"');
|
|
200
200
|
}
|
|
201
201
|
if (!command.getOptionValue('noMailer')) {
|
|
202
|
-
dependencies.push('"nodemailer": "
|
|
202
|
+
dependencies.push('"nodemailer": "9.0.1"');
|
|
203
203
|
}
|
|
204
204
|
return dependencies.sort().map((d) => ` ${d}`);
|
|
205
205
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appweaver/create-weaver-app",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "Appweaver - the backend framework for AI-first development (@create-weaver-app)",
|
|
5
5
|
"author": "Luka Matosevic",
|
|
6
6
|
"license": "MIT",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"create-weaver-app": "node ./dist/create-weaver-app.js"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"commander": "
|
|
35
|
-
"glob": "13.0.
|
|
34
|
+
"commander": "15.0.0",
|
|
35
|
+
"glob": "13.0.6"
|
|
36
36
|
}
|
|
37
37
|
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# Compiled output
|
|
2
|
+
/dist
|
|
3
|
+
/node_modules
|
|
4
|
+
|
|
5
|
+
# Logs
|
|
6
|
+
logs
|
|
7
|
+
*.log
|
|
8
|
+
npm-debug.log*
|
|
9
|
+
pnpm-debug.log*
|
|
10
|
+
yarn-debug.log*
|
|
11
|
+
yarn-error.log*
|
|
12
|
+
lerna-debug.log*
|
|
13
|
+
|
|
14
|
+
# Tests
|
|
15
|
+
/coverage
|
|
16
|
+
/reports
|
|
17
|
+
/temp
|
|
18
|
+
/.nyc_output
|
|
19
|
+
|
|
20
|
+
# Local environment files
|
|
21
|
+
.env
|
|
22
|
+
|
|
23
|
+
# Local storage files
|
|
24
|
+
storage
|
|
25
|
+
|
|
26
|
+
# Local database file
|
|
27
|
+
*.db
|
|
28
|
+
|
|
29
|
+
# OS
|
|
30
|
+
.DS_Store
|
|
31
|
+
|
|
32
|
+
# IDEs and editors
|
|
33
|
+
/.idea
|
|
34
|
+
.project
|
|
35
|
+
.classpath
|
|
36
|
+
.c9/
|
|
37
|
+
*.launch
|
|
38
|
+
.settings/
|
|
39
|
+
*.sublime-workspace
|
|
40
|
+
|
|
41
|
+
# IDE - VSCode
|
|
42
|
+
.vscode/*
|
|
43
|
+
!.vscode/settings.json
|
|
44
|
+
!.vscode/tasks.json
|
|
45
|
+
!.vscode/launch.json
|
|
46
|
+
!.vscode/extensions.json
|
|
@@ -6,13 +6,7 @@ import tsEslint from 'typescript-eslint';
|
|
|
6
6
|
|
|
7
7
|
export default tsEslint.config(
|
|
8
8
|
{
|
|
9
|
-
ignores: [
|
|
10
|
-
'node_modules',
|
|
11
|
-
'dist',
|
|
12
|
-
'database/client',
|
|
13
|
-
'**/*.js',
|
|
14
|
-
'**/*.d.ts'
|
|
15
|
-
]
|
|
9
|
+
ignores: ['node_modules', 'dist', 'database/client', '**/*.js', '**/*.d.ts']
|
|
16
10
|
},
|
|
17
11
|
eslint.configs.recommended,
|
|
18
12
|
...tsEslint.configs.recommendedTypeChecked.map((config) => ({ ...config })),
|
|
@@ -24,16 +24,16 @@
|
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@eslint/js": "9.39.2",
|
|
27
|
-
"@types/bun": "1.3.
|
|
28
|
-
"@types/node": "
|
|
29
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
30
|
-
"@typescript-eslint/parser": "8.
|
|
27
|
+
"@types/bun": "1.3.14",
|
|
28
|
+
"@types/node": "26.0.0",
|
|
29
|
+
"@typescript-eslint/eslint-plugin": "8.61.1",
|
|
30
|
+
"@typescript-eslint/parser": "8.61.1",
|
|
31
31
|
"eslint": "9.39.2",
|
|
32
32
|
"eslint-config-prettier": "10.1.8",
|
|
33
|
-
"eslint-plugin-prettier": "5.5.
|
|
34
|
-
"globals": "17.
|
|
35
|
-
"prettier": "3.8.
|
|
33
|
+
"eslint-plugin-prettier": "5.5.6",
|
|
34
|
+
"globals": "17.6.0",
|
|
35
|
+
"prettier": "3.8.4",
|
|
36
36
|
"typescript": "5.9.3",
|
|
37
|
-
"typescript-eslint": "8.
|
|
37
|
+
"typescript-eslint": "8.61.1"
|
|
38
38
|
}
|
|
39
39
|
}
|
|
@@ -24,21 +24,21 @@
|
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@eslint/js": "9.39.2",
|
|
27
|
-
"@swc/core": "1.15.
|
|
27
|
+
"@swc/core": "1.15.41",
|
|
28
28
|
"@swc/jest": "0.2.39",
|
|
29
29
|
"@types/jest": "30.0.0",
|
|
30
|
-
"@types/node": "
|
|
31
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
32
|
-
"@typescript-eslint/parser": "8.
|
|
30
|
+
"@types/node": "26.0.0",
|
|
31
|
+
"@typescript-eslint/eslint-plugin": "8.61.1",
|
|
32
|
+
"@typescript-eslint/parser": "8.61.1",
|
|
33
33
|
"eslint": "9.39.2",
|
|
34
34
|
"eslint-config-prettier": "10.1.8",
|
|
35
|
-
"eslint-plugin-jest": "29.
|
|
36
|
-
"eslint-plugin-prettier": "5.5.
|
|
37
|
-
"globals": "17.
|
|
38
|
-
"jest": "30.2
|
|
39
|
-
"jest-junit": "
|
|
40
|
-
"prettier": "3.8.
|
|
35
|
+
"eslint-plugin-jest": "29.15.2",
|
|
36
|
+
"eslint-plugin-prettier": "5.5.6",
|
|
37
|
+
"globals": "17.6.0",
|
|
38
|
+
"jest": "30.4.2",
|
|
39
|
+
"jest-junit": "17.0.0",
|
|
40
|
+
"prettier": "3.8.4",
|
|
41
41
|
"typescript": "5.9.3",
|
|
42
|
-
"typescript-eslint": "8.
|
|
42
|
+
"typescript-eslint": "8.61.1"
|
|
43
43
|
}
|
|
44
44
|
}
|