From 4b7d7d9a4d18e097706c275a004d8db9200f9c70 Mon Sep 17 00:00:00 2001 From: Jost Schulte Date: Wed, 26 Jan 2022 14:49:36 +0100 Subject: [PATCH] Fix build & rebuild for release --- CHANGELOG.md | 3 +++ package.json | 4 ++-- tsconfig.json | 3 ++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 479719c2..48096e13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/package.json b/package.json index a0b7b27c..4fad54a8 100644 --- a/package.json +++ b/package.json @@ -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", @@ -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", diff --git a/tsconfig.json b/tsconfig.json index a1099cbf..fde14c85 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -20,7 +20,8 @@ "strictNullChecks": true, "suppressImplicitAnyIndexErrors": true, "noUnusedLocals": false, - "skipLibCheck": true + "skipLibCheck": true, + "declaration": true }, "files": [],