improve using gulp
This commit is contained in:
parent
891bc412ff
commit
368ff53fc3
11
README.md
11
README.md
|
|
@ -156,12 +156,17 @@ music: [
|
|||
]
|
||||
```
|
||||
|
||||
## Development
|
||||
## Run in development
|
||||
|
||||
```
|
||||
$ npm install
|
||||
$ npm install -g gulp
|
||||
$ gulp
|
||||
$ npm run dev
|
||||
```
|
||||
|
||||
## Make a release
|
||||
|
||||
```
|
||||
$ npm run build
|
||||
```
|
||||
|
||||
## Related Projects
|
||||
|
|
|
|||
|
|
@ -4,7 +4,9 @@
|
|||
"description": "Wow, such a beautiful html5 music player",
|
||||
"main": "APlayer.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"dev": "gulp",
|
||||
"build": "gulp release"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
|
|||
Loading…
Reference in New Issue