File tree 3 files changed +7
-3
lines changed
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 2.0.1
4
+
5
+ - Add development packages (types) so it can compile the tests
6
+
3
7
## 2.0.0
4
8
5
9
- Implement ` tsc ` compilation
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ RUN set -ex; \
24
24
yarn build; \
25
25
# install all the development modules (used for building)
26
26
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; \
29
29
# clean our yarn cache
30
30
yarn cache clean;
31
31
Original file line number Diff line number Diff line change 2
2
"name" : " @exercism/typescript-test-runner" ,
3
3
"description" : " Automated Test runner for exercism solutions in TypeScript." ,
4
4
"author" : " Derk-Jan Karrenbeld <derk-jan+github@karrenbeld.info>" ,
5
- "version" : " 2.0.0 " ,
5
+ "version" : " 2.0.1 " ,
6
6
"license" : " AGPL-3.0-or-later" ,
7
7
"repository" : {
8
8
"type" : " git" ,
You can’t perform that action at this time.
0 commit comments