Skip to content
This repository was archived by the owner on Nov 21, 2019. It is now read-only.

Commit 677ba55

Browse files
authored
Merge pull request #730 from wbobeirne/npm-script
Make scripts for the two gulp actions. Update readme to point to them.
2 parents ef8745f + 242a08c commit 677ba55

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ If you want to help contribute, here's what you need to know to get it up and ru
9898
**Getting Started**
9999

100100
- Start by running `npm install`.
101-
- Run `gulp`. Gulp will then watch & compile everything and then watch for changes to the HTML, JS, or CSS.
102-
- For distribution, run `gulp clean`.
101+
- Run `npm run dev`. Gulp will then watch & compile everything and then watch for changes to the HTML, JS, or CSS.
102+
- For distribution, run `npm run dist`.
103103

104104
**Folder Structure**
105105
- `fonts` and `images` get moved into their respective folders. This isn't watched via gulp so if you add an image or font, you need to run `gulp` again.

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
"main": "gulpfile.js",
66
"author": "MyEtherWallet",
77
"license": "ISC",
8+
"scripts": {
9+
"dev": "gulp",
10+
"dist": "gulp clean"
11+
},
812
"devDependencies": {
913
"angular": "^1.6.2",
1014
"angular-animate": "^1.6.2",

0 commit comments

Comments
 (0)