Skip to content

Commit

Permalink
Attempt to fix compilation (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
SleeplessByte authored Sep 5, 2021
1 parent f20a67f commit ec8aaa2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.0.1

- Add development packages (types) so it can compile the tests

## 2.0.0

- Implement `tsc` compilation
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ RUN set -ex; \
yarn build; \
# install all the development modules (used for building)
rm -rf node_modules; \
# install only the node_modules we need for production
yarn install --production; \
# install only the node_modules we need for production (which is all for tests to compile)
yarn install; \
# clean our yarn cache
yarn cache clean;

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@exercism/typescript-test-runner",
"description": "Automated Test runner for exercism solutions in TypeScript.",
"author": "Derk-Jan Karrenbeld <[email protected]>",
"version": "2.0.0",
"version": "2.0.1",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
Expand Down

0 comments on commit ec8aaa2

Please sign in to comment.