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
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -162,32 +162,32 @@ Our mutation type then creates the `introduceShip` field using the return value
162
162
After cloning this repo, ensure dependencies are installed by running:
163
163
164
164
```sh
165
-
npm install
165
+
yarn install
166
166
```
167
167
168
168
This library is written in ES6 and uses [Babel](http://babeljs.io/) for ES5 transpilation and [Flow](http://flowtype.org/) for type safety. Widely consumable JavaScript can be produced by running:
169
169
170
170
```sh
171
-
npm run build
171
+
yarn build
172
172
```
173
173
174
-
Once `npm run build` has run, you may `import` or `require()` directly from node.
174
+
Once `yarn build` has run, you may `import` or `require()` directly from node.
175
175
176
176
After developing, the full test suite can be evaluated by running:
177
177
178
178
```sh
179
-
npmtest
179
+
yarntest
180
180
```
181
181
182
182
While actively developing, we recommend running
183
183
184
184
```sh
185
-
npm run watch
185
+
yarn watch
186
186
```
187
187
188
188
in a terminal. This will watch the file system run lint, tests, and type checking automatically whenever you save a js file.
189
189
190
-
To lint the JS files and run type interface checks run `npm run lint`.
190
+
To lint the JS files and run type interface checks run `yarn lint`.
0 commit comments