File tree Expand file tree Collapse file tree 4 files changed +16
-1
lines changed Expand file tree Collapse file tree 4 files changed +16
-1
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @qwik.dev/partytown ' : minor
3
+ ---
4
+
5
+ feat: Creates a compiled release of the lib directory.
6
+
7
+ This creates a compiled release of the ` lib ` directory for use by integration builders and HTML-only developers.
Original file line number Diff line number Diff line change 59
59
NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
60
60
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
61
61
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
62
+
63
+ - name : Upload release asset
64
+ user : actions4gh/setup-gh@v1
65
+ if : github.ref_type == 'tag'
66
+ run : gh release ${{ github.ref }} upload './lib.tar.gz#Compiled lib'
67
+ env :
68
+ GH_REPO : ${{ github.repository }}
Original file line number Diff line number Diff line change @@ -24,3 +24,4 @@ node_modules/
24
24
.idea
25
25
.history
26
26
tests /integrations /load-scripts-on-main-thread /snippet.js
27
+ lib.tar.gz
Original file line number Diff line number Diff line change 61
61
],
62
62
"scripts" : {
63
63
"build" : " tsc && rollup -c scripts/rollup.config.js" ,
64
- "build.prod" : " tsc && rollup -c scripts/rollup.config.js --configReleaseBuild" ,
64
+ "build.prod" : " tsc && rollup -c scripts/rollup.config.js --configReleaseBuild && tar -zcvf lib.tar lib && gzip lib.tar " ,
65
65
"build.site" : " cd docs && npm i && npm run build" ,
66
66
"build.watch" : " rollup -c scripts/rollup.config.js -w --configDev" ,
67
67
"change" : " changeset" ,
You can’t perform that action at this time.
0 commit comments