Skip to content

Commit

Permalink
Fix build & rebuild for release
Browse files Browse the repository at this point in the history
  • Loading branch information
jost-s committed Jan 26, 2022
1 parent 2896766 commit 4b7d7d9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.10]
### Fixed
- Include missing type declarations for Tryorama

## [0.4.9]
### Fixed
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "git",
"url": "https://github.com/holochain/tryorama"
},
"version": "0.4.9",
"version": "0.4.10",
"description": "test framework for holochain hApps",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -15,7 +15,7 @@
"test": "test"
},
"scripts": {
"build": "rm -rf ./lib ; tsc -d",
"build": "tsc -b",
"dev": "rm -rf ./lib ; tsc -d -w",
"doc": "typedoc",
"prepare": "npm run build",
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": false,
"skipLibCheck": true
"skipLibCheck": true,
"declaration": true
},

"files": [],
Expand Down

0 comments on commit 4b7d7d9

Please sign in to comment.