File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ FROM mhart/alpine-node:12
33WORKDIR /src
44ENV PATH /src:$PATH
55
6- ENV MONKEY_VERSION=0.1.5
6+ ENV MONKEY_VERSION=0.2.0
77RUN npm install -g monkey-typescript@${MONKEY_VERSION}
88ENTRYPOINT ["monkey-typescript" ]
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ and(1, false); // false
4545or (1 , false ); // true
4646```
4747
48- $ npx monkey-typescript example.monkey
48+ $ npx monkey-typescript examples/ example.monkey
4949 Log: 0
5050 Log: 1
5151 Log: 2
@@ -134,12 +134,12 @@ or watch for file changes:
134134 # bump version number in `package.json`
135135 # bump version number in `Dockerfile`
136136 # commit and push changes
137- $ git commit -m'bump version to v0.1.5 '
137+ $ git commit -m'bump version to v0.2.0 '
138138 $ git push
139139 $ npm run build
140140 $ npm publish
141141 $ git tag v0.1.3
142- $ git push origin v0.1.3
142+ $ git push origin v0.2.0
143143
144144## Credits
145145
Original file line number Diff line number Diff line change 11{
22 "name" : " monkey-typescript" ,
3- "version" : " 0.1.5 " ,
3+ "version" : " 0.2.0 " ,
44 "description" : " A Monkey language interpreter in Typescript" ,
55 "main" : " build/index" ,
66 "types" : " build/index" ,
You can’t perform that action at this time.
0 commit comments