You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -41,9 +42,11 @@ You are very welcome with any [feedback](https://github.com/halfzebra/create-elm
41
42
## Installing Elm packages
42
43
43
44
```sh
44
-
elm-app package install <package-name>
45
+
elm-app install <package-name>
45
46
```
46
47
48
+
Other `elm-package` commands are also [available.](#package)
49
+
47
50
## Installing JavaScript packages
48
51
49
52
To use JavaScript packages from npm, you'll need to add a `package.json`, install the dependencies, and you're ready to go.
@@ -102,6 +105,10 @@ Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
102
105
The page will reload if you make edits.
103
106
You will also see any lint errors in the console.
104
107
108
+
### `elm-app install`
109
+
110
+
An alias for [`elm-app package install`](#package)
111
+
105
112
### `elm-app test`
106
113
Run tests with [node-test-runner](https://github.com/rtfeldman/node-test-runner/tree/master)
107
114
@@ -111,6 +118,7 @@ elm-app test --watch
111
118
```
112
119
113
120
### `elm-app eject`
121
+
114
122
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
115
123
116
124
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time.
@@ -120,20 +128,25 @@ Instead, it will copy all the configuration files and the transitive dependencie
120
128
You don’t have to use 'eject' The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However, we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
121
129
122
130
### `elm-app <elm-platform-comand>`
131
+
123
132
Create Elm App does not rely on the global installation of Elm Platform, but you still can use it's local Elm Platform to access default command line tools:
124
133
125
134
#### `package`
135
+
126
136
Alias for [elm-package](http://guide.elm-lang.org/get_started.html#elm-package)
127
137
128
138
Use it for installing Elm packages from [package.elm-lang.org](http://package.elm-lang.org/)
129
139
130
140
#### `repl`
141
+
131
142
Alias for [elm-repl](http://guide.elm-lang.org/get_started.html#elm-repl)
132
143
133
144
#### `make`
145
+
134
146
Alias for [elm-make](http://guide.elm-lang.org/get_started.html#elm-make)
135
147
136
148
#### `reactor`
149
+
137
150
Alias for [elm-reactor](http://guide.elm-lang.org/get_started.html#elm-reactor)
0 commit comments