We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8406b2d commit 364d605Copy full SHA for 364d605
.github/workflows/release.yml
@@ -49,6 +49,8 @@ jobs:
49
with:
50
node-version: 14
51
registry-url: https://npm.pkg.github.com
52
+ scope: '@oda2'
53
+ always-auth: true
54
55
- run: npm publish
56
env:
package.json
@@ -1,5 +1,5 @@
1
{
2
- "version": "0.1.2",
+ "version": "0.1.3",
3
"license": "MIT",
4
"name": "using-try-catch",
5
"module": "dist/esm/index.js",
rollup.config.ts
@@ -11,7 +11,9 @@ export default {
11
},
12
plugins: [
13
typescript({
14
- module: 'ES2015'
+ module: 'ES2015',
15
+ declaration: true,
16
+ outDir: 'dist'
17
}),
18
cleanup({ comments: 'none' })
19
]
0 commit comments