@@ -5,9 +5,9 @@ Command line interface for [CodeRoad](http://coderoad.github.io). See the [docs]
5
5
6
6
Use [ CodeRoad CLI] ( https://github.com/coderoad/coderoad-cli ) to setup and build a project data file.
7
7
8
- * Install * CodeRoad-CLI* . Make sure [ NodeJS] ( nodejs.org ) is already installed
8
+ Install * CodeRoad-CLI* . Make sure [ NodeJS] ( nodejs.org ) is already installed
9
9
10
- ` > npm install -g coderoad-cli`
10
+ > npm install -g coderoad-cli
11
11
12
12
13
13
### Create
@@ -16,7 +16,7 @@ Get setup quickly with CodeRoad: either [clone a tutorial repo](https://git-scm.
16
16
17
17
In your development directory, run ** create** with your new package name.
18
18
19
- ` > coderoad create $YOUR-PACKAGE-NAME$`
19
+ > coderoad create $YOUR-PACKAGE-NAME$
20
20
21
21
Running ** create** generates:
22
22
@@ -47,13 +47,13 @@ We'll learn more about these configurations when it's time to [publish](#publish
47
47
48
48
Update changes to your tutorial by running ** build** . This will generate a * coderoad.json* data file used by * atom-coderoad* .
49
49
50
- ` > coderoad build`
50
+ > coderoad build
51
51
52
52
### Demo Your Tutorial
53
53
54
54
Open a new directory for demoing your tutorial. Setup a new NPM project file.
55
55
56
- ` > npm init`
56
+ > npm init
57
57
58
58
Add your package name to the ` dependencies ` in ` package.json ` :
59
59
@@ -73,12 +73,12 @@ Normally you would use `npm install` to install the package, but your package is
73
73
74
74
Inside of your tutorial root directory, run link.
75
75
76
- ` > npm link`
76
+ > npm link
77
77
78
78
Inside of your demo root directory, connect the link.
79
79
80
- ` > npm link coderoad-$YOUR-PACKAGE-NAME$`
81
- ` > npm install`
80
+ > npm link coderoad-$YOUR-PACKAGE-NAME$
81
+ > npm install
82
82
83
83
84
84
### Using Atom
0 commit comments