Browse Source
Merge pull request #18 from deweller/patch-3
Use npm instead of yarn
feat/clarity-updates
Moxiegirl
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
8 deletions
-
_browser/todo-list.md
|
@ -67,18 +67,13 @@ These instructions assume you are cloning. |
|
|
$ cd blockstack-todos |
|
|
$ cd blockstack-todos |
|
|
``` |
|
|
``` |
|
|
|
|
|
|
|
|
2. Use `yarn` to install the dependencies. |
|
|
2. Use `npm` to install the dependencies. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
``` |
|
|
``` |
|
|
$ yarn install |
|
|
$ npm install |
|
|
yarn install v1.9.2 |
|
|
|
|
|
info No lockfile found. |
|
|
|
|
|
... |
|
|
... |
|
|
[4/5] 🔗 Linking dependencies... |
|
|
added 1161 packages in 70.746s |
|
|
[5/5] 📃 Building fresh packages... |
|
|
|
|
|
success Saved lockfile. |
|
|
|
|
|
✨ Done in 19.90s. |
|
|
|
|
|
``` |
|
|
``` |
|
|
|
|
|
|
|
|
The Todo application has a basic Vue.js structure. There are several configuration files but the central programming files are in the `src` directory: |
|
|
The Todo application has a basic Vue.js structure. There are several configuration files but the central programming files are in the `src` directory: |
|
|