@netlify/agent-runner-cli 1.105.0 → 1.107.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/bin-local.js +73 -56
- package/dist/bin.js +79 -62
- package/dist/index.js +75 -58
- package/dist/skills/netlify-database@netlifydb/SKILL.md +2 -1
- package/package.json +2 -2
|
@@ -113,7 +113,7 @@ export default defineConfig({
|
|
|
113
113
|
|
|
114
114
|
### Step 5: Generate migrations
|
|
115
115
|
|
|
116
|
-
|
|
116
|
+
Every time you change the schema, run `drizzle-kit generate`:
|
|
117
117
|
|
|
118
118
|
```bash
|
|
119
119
|
npx drizzle-kit generate
|
|
@@ -420,3 +420,4 @@ leading to unpredictable and broken behavior.
|
|
|
420
420
|
5. **Misunderstanding `netlify db migrations reset`**: This command only deletes migration files that have
|
|
421
421
|
**not yet been applied** to your preview branch. It cannot undo an already-applied migration — to change
|
|
422
422
|
something that's already applied, you must roll forward with a new migration.
|
|
423
|
+
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netlify/agent-runner-cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.107.0",
|
|
5
5
|
"description": "CLI tool for running Netlify agents",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"vitest": "^4.0.16"
|
|
82
82
|
},
|
|
83
83
|
"dependencies": {
|
|
84
|
-
"@anthropic-ai/claude-code": "2.1.
|
|
84
|
+
"@anthropic-ai/claude-code": "2.1.117",
|
|
85
85
|
"@anthropic-ai/sdk": "0.90.0",
|
|
86
86
|
"@google/gemini-cli": "0.38.2",
|
|
87
87
|
"@netlify/database-proxy": "^0.1.4",
|