We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e84d2c commit 21fb844Copy full SHA for 21fb844
.github/workflows/package.yml
@@ -0,0 +1,25 @@
1
+name: Build package
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - uses: actions/setup-node@v2
15
+ - name: Install dependencies
16
+ run: npm install
17
+ - name: Build
18
+ run: npm run build
19
+ - name: Package
20
+ run: npm pack
21
+ - name: Upload
22
+ uses: actions/upload-artifact@v2
23
+ with:
24
+ name: webln
25
+ path: "*.tgz"
rollup.config.js
@@ -39,6 +39,9 @@ export default [
39
unsafe_comps: true,
40
warnings: false,
41
},
42
+ format: {
43
+ comments: false,
44
+ },
45
}),
46
],
47
0 commit comments