Skip to content

Commit 7138da8

Browse files
committed
Add clean scripts
1 parent c3362b5 commit 7138da8

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

examples/express/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"type": "module",
55
"scripts": {
66
"build": "tsc",
7+
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
78
"dev": "tsc -w & sleep 1 && NODE_NO_WARNINGS=1 node --watch dist/index.js",
89
"start": "node dist/index.js"
910
},

examples/gated-group/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"type": "module",
55
"scripts": {
66
"build": "tsc",
7+
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
78
"dev": "tsc -w & sleep 1 && NODE_NO_WARNINGS=1 node --watch dist/index.js",
89
"start": "node dist/index.js"
910
},

examples/gm/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"type": "module",
55
"scripts": {
66
"build": "tsc",
7+
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
78
"dev": "tsc -w & sleep 1 && NODE_NO_WARNINGS=1 node --watch dist/index.js",
89
"start": "node dist/index.js"
910
},

examples/gpt/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"type": "module",
55
"scripts": {
66
"build": "tsc",
7+
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
78
"dev": "tsc -w & sleep 1 && NODE_NO_WARNINGS=1 node --watch dist/index.js",
89
"start": "node dist/index.js"
910
},

0 commit comments

Comments
 (0)