Skip to content

Commit ea40595

Browse files
committed
feat(query-generation): add template node
1 parent 2cf0c6f commit ea40595

31 files changed

Lines changed: 1442 additions & 77 deletions

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: npm run test
3131

3232
- name: Run Trivy vulnerability scanner in repo mode
33-
uses: aquasecurity/trivy-action@0.28.0
33+
uses: aquasecurity/trivy-action@0.33.1
3434
with:
3535
scan-type: 'fs'
3636
scan-ref: '${{ github.workspace }}'

package-lock.json

Lines changed: 160 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,8 @@
108108
"coverage": "nyc npm run test",
109109
"migrate:pg:up": "db-migrate up --config migrations/pg/database.json --migrations-dir migrations/pg/migrations",
110110
"migrate:pg:down": "db-migrate down --config migrations/pg/database.json --migrations-dir migrations/pg/migrations",
111-
"prepare": "test \"$HUSKY\" = \"0\" || husky install"
111+
"prepare": "test \"$HUSKY\" = \"0\" || husky install",
112+
"build:diagram": "ts-node scripts/visualize-graph"
112113
},
113114
"repository": {
114115
"type": "git",
@@ -177,6 +178,7 @@
177178
"pg": "^8.16.3",
178179
"semantic-release": "^25.0.1",
179180
"source-map-support": "^0.5.21",
181+
"ts-node": "^10.9.2",
180182
"typescript": "^5.6.3"
181183
},
182184
"overrides": {

0 commit comments

Comments
 (0)