Skip to content
This repository was archived by the owner on Sep 3, 2022. It is now read-only.

Add --declaration back to build scripts and remove lib from .npmignore #178

Merged
merged 9 commits into from
Jul 30, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
key: yarn-dependency-cache-{{ checksum "yarn.lock" }}
paths:
- node_modules
- run: yarn run tsc
- run: yarn run tsc --declaration
- run: yarn run karma start karma.conf.coverage.js
- store_test_results:
path: junit-reports
Expand All @@ -55,7 +55,7 @@ jobs:
- checkout
- attach_workspace: { at: . }
- run: npm config set "//registry.npmjs.org/:_authToken" $NPM_AUTH
- run: yarn add -D typescript && yarn run tsc
- run: yarn add -D typescript && yarn run tsc --declaration
- run: npm publish .

workflows:
Expand Down
6 changes: 6 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@

3.13.8 / 2020-07-29
===================

* Add --declaration back to build scripts
* Publish v3.13.7 (#176)
# 3.13.7 / 2020-07-29

- Publish types to npm
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ install:

# Build typescript
build: clean install
yarn tsc
yarn tsc --declaration
.PHONY: build

# Remove temporary files and build artifacts.
Expand Down