Skip to content

Commit

Permalink
Do not include sourcemaps in dist size
Browse files Browse the repository at this point in the history
  • Loading branch information
jmhobbs committed Oct 7, 2024
1 parent d017d10 commit ea2c7dd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/package-size-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ jobs:
run: yarn install --immutable
- name: build
run: yarn build
- name: Remove Sourcemaps
run: |
rm -f dist/*.map
rm -f action/*.map
- name: Get Package Size
id: package_size
run: |
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/package-size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ jobs:
run: yarn install --immutable
- name: build
run: yarn build
- name: Remove Sourcemaps
run: |
rm -f dist/*.map
rm -f action/*.map
- name: Get Package Size
id: package_size
run: |
Expand Down

0 comments on commit ea2c7dd

Please sign in to comment.