Skip to content

Commit 498b111

Browse files
fix: remove unnecessary env-file references from start scripts
1 parent 6549aa3 commit 498b111

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

package.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,20 @@
44
"type": "module",
55
"packageManager": "pnpm@9.15.9",
66
"scripts": {
7-
"start": "tsx --env-file=.env.local src/index.ts",
7+
"start": "tsx src/index.ts",
88
"typecheck": "tsc --noEmit",
99
"lint": "eslint src",
1010
"lint:fix": "eslint src --fix",
1111
"format": "prettier --write src",
1212
"format:check": "prettier --check src",
1313
"manifest": "tsx src/generate-manifest.ts",
14-
"weekly": "tsx --env-file=.env.local src/weekly.ts",
15-
"monthly": "tsx --env-file=.env.local src/monthly.ts",
16-
"notify": "tsx --env-file=.env.local src/notify.ts"
14+
"weekly": "tsx src/weekly.ts",
15+
"monthly": "tsx src/monthly.ts",
16+
"notify": "tsx src/notify.ts"
1717
},
1818
"dependencies": {
1919
"@anthropic-ai/sdk": "^0.36.3",
20-
"js-yaml": "^4.1.1",
21-
"openai": "^6.27.0"
20+
"js-yaml": "^4.1.1"
2221
},
2322
"devDependencies": {
2423
"@eslint/js": "^9",

0 commit comments

Comments
 (0)