Skip to content

Commit be38e88

Browse files
authored
Fix tsc output (#236)
* dont wrap tsc output in src/ * typo
1 parent a4e9965 commit be38e88

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
### v0.25.2
4+
5+
Typescript output to `dist/` instead of `dist/src/`
6+
7+
38
### v0.25.1
49

510
Fix naming for minified UMD build

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "webnative",
3-
"version": "0.25.1",
3+
"version": "0.25.2",
44
"description": "Fission Webnative SDK",
55
"keywords": [
66
"WebCrypto",

src/common/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = "0.25.1"
1+
export const VERSION = "0.25.2"

tsconfig.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@
1818
]
1919
},
2020
"include": [
21-
"src"
21+
"src/**/*"
2222
],
2323
"exclude": [
24-
"src/**/*.test.ts"
24+
"src/**/*.test.ts",
25+
"tests/**/*",
26+
"src/setup/jest.ts"
2527
]
2628
}

0 commit comments

Comments
 (0)