Skip to content

Commit d24df5c

Browse files
authored
Merge pull request #80 from samsonmking/fix/79-no-dist-package
fix: #79 build typescript after pnpm update
2 parents 1879d94 + a142300 commit d24df5c

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

.changeset/many-socks-exist.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
'@epaperjs/cli': patch
3+
'@epaperjs/core': patch
4+
'@epaperjs/rpi-2in13-bc': patch
5+
'@epaperjs/rpi-2in13-v2': patch
6+
'@epaperjs/rpi-2in7': patch
7+
'@epaperjs/rpi-3in7': patch
8+
'@epaperjs/rpi-4in2': patch
9+
'@epaperjs/rpi-7in5-v2': patch
10+
---
11+
12+
Fix: typescript build

.github/workflows/publish.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,10 @@ jobs:
3030
run: pnpm install
3131
- name: Check Formatting
3232
run: pnpm format:check
33-
- name: Build
33+
- name: Build Packages
3434
run: pnpm -r build:clean
35+
- name: Build Typescript
36+
run: pnpm build:clean
3537
- name: create and publish versions
3638
uses: changesets/action@v1
3739
with:

.github/workflows/pull_request.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,7 @@ jobs:
2525
run: pnpm install
2626
- name: Check Formatting
2727
run: pnpm format:check
28-
- name: Build
28+
- name: Build Packages
2929
run: pnpm -r build:clean
30+
- name: Build Typescript
31+
run: pnpm build:clean

0 commit comments

Comments
 (0)