Skip to content

Commit 364d605

Browse files
committed
fix: Generate Typings
1 parent 8406b2d commit 364d605

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ jobs:
4949
with:
5050
node-version: 14
5151
registry-url: https://npm.pkg.github.com
52+
scope: '@oda2'
53+
always-auth: true
5254

5355
- run: npm publish
5456
env:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.1.2",
2+
"version": "0.1.3",
33
"license": "MIT",
44
"name": "using-try-catch",
55
"module": "dist/esm/index.js",

rollup.config.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ export default {
1111
},
1212
plugins: [
1313
typescript({
14-
module: 'ES2015'
14+
module: 'ES2015',
15+
declaration: true,
16+
outDir: 'dist'
1517
}),
1618
cleanup({ comments: 'none' })
1719
]

0 commit comments

Comments
 (0)