Skip to content

Commit bf4eea9

Browse files
committed
quick fix
1 parent 0e5a975 commit bf4eea9

File tree

5 files changed

+15
-3
lines changed

5 files changed

+15
-3
lines changed

lib/cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var search_1 = require('./search/search');
99
var tutorials_1 = require('./tutorials/tutorials');
1010
var publish_1 = require('./publish/publish');
1111
program
12-
.version('0.3.12')
12+
.version('0.3.22')
1313
.usage('[options] <keywords>')
1414
.option('-b, --build [path/to/tutorial.md]', 'tutorial markdown file', /^.+\.md$/i)
1515
.option('-c, --create [name]', 'tutorial name')

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "coderoad-cli",
3-
"version": "0.3.22",
3+
"version": "0.3.23",
44
"description": "Command line interface for CodeRoad. Build project files.",
55
"keywords": [
66
"coderoad"

setup/tutorial/1/01/page-one.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ Try making your own basic functions.
2121
@action(set(
2222
```
2323
// addOne
24+
function addOne(x) {
25+
return;
26+
}
2427
```
2528
))
2629

@@ -30,5 +33,8 @@ Try making your own basic functions.
3033
```
3134
3235
// subtractOne
36+
function subtractOne(x) {
37+
return;
38+
}
3339
```
3440
))

setup/tutorial/1/02/page-two.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ We'll write two more basic functions, this time without any help.
99
@action(set(
1010
```
1111
// divideOne
12+
function divideOne(x) {
13+
return;
14+
}
1215
```
1316
))
1417

@@ -18,5 +21,8 @@ We'll write two more basic functions, this time without any help.
1821
```
1922
2023
// multiplyOne
24+
function multiplyOne(x) {
25+
return;
26+
}
2127
```
2228
))

src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import tutorials from './tutorials/tutorials';
99
import publish from './publish/publish';
1010

1111
program
12-
.version('0.3.12')
12+
.version('0.3.23')
1313
.usage('[options] <keywords>')
1414
.option('-b, --build [path/to/tutorial.md]', 'tutorial markdown file', /^.+\.md$/i)
1515
.option('-c, --create [name]', 'tutorial name')

0 commit comments

Comments
 (0)