Remove missing build command, add default build, update README

This commit is contained in:
Kevin Kao 2016-04-05 15:21:43 -07:00
parent acbf45143a
commit 6631056464
2 changed files with 6 additions and 3 deletions

View file

@ -21,6 +21,9 @@ http://mazda3revolution.com/forums/2014-2016-mazda-3-skyactiv-audio-electronics/
There is not a whole documentation available yet but you can access some basic articles from the projects WIKI. There is not a whole documentation available yet but you can access some basic articles from the projects WIKI.
## Build
To run the default build, execute ``npm run build``.
## About this Repo ## About this Repo
This is the development source repository for the CASDK containing everything and anything. However you shouldn't ever need to clone this repo if you don't activley participating in the micro framework development. This is the development source repository for the CASDK containing everything and anything. However you shouldn't ever need to clone this repo if you don't activley participating in the micro framework development.
@ -36,4 +39,4 @@ License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
License for more details. License for more details.

View file

@ -27,8 +27,8 @@
"run-sequence": "^1.1.5" "run-sequence": "^1.1.5"
}, },
"scripts": { "scripts": {
"build-runtime": "gulp build-runtime", "build-install": "gulp build-install",
"build-install": "gulp build-install" "build": "gulp default"
}, },
"license": "GPL-3.0" "license": "GPL-3.0"
} }