Skip to content

Commit e33357b

Browse files
authored
minor fixes (#69)
1 parent 2bdced6 commit e33357b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

email-sender/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"scripts": {
77
"start": "ts-node src/services.ts",
88
"start.watch": "nodemon src/services.ts",
9-
"dev": "pnpm start.watch",
9+
"dev": "npm run start.watch",
1010
"build": "tsc --build",
1111
"clean": "rm -rf node_modules",
1212
"schedule": "ts-node ./scheduleWorkflow.ts",

email-sender/readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ add OPENAI_API_KEY, SENDGRID_API_KEY, FROM_EMAIL, TO_EMAIL in .env
3131

3232
```bash
3333
npm i
34-
npm build
35-
npm dev
34+
npm run build
35+
npm run dev
3636
```
3737

3838
Your code will be running and syncing with Restack engine to execute workflows or functions.

stripe-ai/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"scripts": {
77
"start": "ts-node src/services.ts",
88
"start.watch": "nodemon src/services.ts",
9-
"dev": "pnpm start.watch",
9+
"dev": "npm run start.watch",
1010
"build": "tsc --build",
1111
"clean": "rm -rf node_modules",
1212
"schedule": "ts-node ./scheduleWorkflow.ts",

stripe-ai/readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ add OPENAI_API_KEY, STRIPE_SECRET_KEY in .env
2727

2828
```bash
2929
npm i
30-
npm build
31-
npm dev
30+
npm run build
31+
npm run dev
3232
```
3333

3434
Your code will be running and syncing with Restack engine to execute workflows or functions.

0 commit comments

Comments
 (0)