Skip to content

Commit

Permalink
Fix tsc output (#236)
Browse files Browse the repository at this point in the history
* dont wrap tsc output in src/

* typo
  • Loading branch information
dholms authored May 19, 2021
1 parent a4e9965 commit be38e88
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

### v0.25.2

Typescript output to `dist/` instead of `dist/src/`


### v0.25.1

Fix naming for minified UMD build
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webnative",
"version": "0.25.1",
"version": "0.25.2",
"description": "Fission Webnative SDK",
"keywords": [
"WebCrypto",
Expand Down
2 changes: 1 addition & 1 deletion src/common/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = "0.25.1"
export const VERSION = "0.25.2"
6 changes: 4 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@
]
},
"include": [
"src"
"src/**/*"
],
"exclude": [
"src/**/*.test.ts"
"src/**/*.test.ts",
"tests/**/*",
"src/setup/jest.ts"
]
}

0 comments on commit be38e88

Please sign in to comment.