@objectql/cli 4.0.0 → 4.0.1
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 +7 -7
- package/templates/hello-world/CHANGELOG.md +8 -0
- package/templates/hello-world/package.json +1 -1
- package/templates/starter/CHANGELOG.md +10 -0
- package/templates/starter/package.json +1 -1
- package/templates/starter/src/modules/projects/projects.action.ts +195 -346
- package/templates/starter/src/modules/projects/projects.hook.ts +98 -263
- package/templates/starter/src/seed.ts +1 -1
- package/templates/starter/tsconfig.tsbuildinfo +1 -1
- package/templates/starter/__tests__/projects-hooks-actions.test.ts +0 -498
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectql/cli",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "Command-line interface for ObjectQL - Code generation, migrations, REPL, and AI-powered development tools",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"objectql",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"ts-node": "^10.9.1",
|
|
35
35
|
"openai": "^4.28.0",
|
|
36
36
|
"dotenv": "^16.4.5",
|
|
37
|
-
"@objectql/types": "4.0.
|
|
38
|
-
"@objectql/core": "4.0.
|
|
39
|
-
"@objectql/server": "4.0.
|
|
40
|
-
"@objectql/driver-sql": "4.0.
|
|
41
|
-
"@objectql/platform-node": "4.0.
|
|
37
|
+
"@objectql/types": "4.0.1",
|
|
38
|
+
"@objectql/core": "4.0.1",
|
|
39
|
+
"@objectql/server": "4.0.1",
|
|
40
|
+
"@objectql/driver-sql": "4.0.1",
|
|
41
|
+
"@objectql/platform-node": "4.0.1"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"typescript": "^5.0.0",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
},
|
|
48
48
|
"scripts": {
|
|
49
49
|
"build": "tsc && pnpm run copy-templates",
|
|
50
|
-
"copy-templates": "rm -rf templates && mkdir -p templates && cp -r ../../../examples/quickstart/hello-world templates/ && cp -r ../../../examples/showcase/project-tracker templates/starter && rm -rf templates/*/node_modules templates/*/dist",
|
|
50
|
+
"copy-templates": "rm -rf templates && mkdir -p templates && cp -r ../../../examples/quickstart/hello-world templates/ && cp -r ../../../examples/showcase/project-tracker templates/starter && rm -rf templates/*/node_modules templates/*/dist templates/*/__tests__",
|
|
51
51
|
"watch": "tsc -w",
|
|
52
52
|
"test": "jest"
|
|
53
53
|
}
|