Skip to content

Commit 8bae480

Browse files
Replace tsup with tsc
1 parent 5641e2c commit 8bae480

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
cache: 'npm'
2121

2222
- name: Install dependencies
23-
run: npm install --force
23+
run: npm install
2424

2525
- name: Build the project
2626
run: npm run build

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
cache: 'npm'
2121

2222
- name: Install dependencies
23-
run: npm install --force
23+
run: npm install
2424

2525
- name: Run tests
2626
run: npm test

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"scripts": {
1212
"test": "vitest",
1313
"dev": "nodemon index.ts",
14-
"build": "tsup",
14+
"build": "tsc",
1515
"start": "node index.js"
1616
},
1717
"keywords": [

0 commit comments

Comments
 (0)