Skip to content

Commit ec8aaa2

Browse files
Attempt to fix compilation (#24)
1 parent f20a67f commit ec8aaa2

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 2.0.1
4+
5+
- Add development packages (types) so it can compile the tests
6+
37
## 2.0.0
48

59
- Implement `tsc` compilation

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ RUN set -ex; \
2424
yarn build; \
2525
# install all the development modules (used for building)
2626
rm -rf node_modules; \
27-
# install only the node_modules we need for production
28-
yarn install --production; \
27+
# install only the node_modules we need for production (which is all for tests to compile)
28+
yarn install; \
2929
# clean our yarn cache
3030
yarn cache clean;
3131

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@exercism/typescript-test-runner",
33
"description": "Automated Test runner for exercism solutions in TypeScript.",
44
"author": "Derk-Jan Karrenbeld <derk-jan+github@karrenbeld.info>",
5-
"version": "2.0.0",
5+
"version": "2.0.1",
66
"license": "AGPL-3.0-or-later",
77
"repository": {
88
"type": "git",

0 commit comments

Comments
 (0)