Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flpvsk/widget-draft
https://github.com/flpvsk/widget-draft
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/flpvsk/widget-draft
- Owner: flpvsk
- Created: 2014-09-26T11:00:35.000Z (over 10 years ago)
- Default Branch: gh-pages
- Last Pushed: 2014-09-29T09:33:22.000Z (over 10 years ago)
- Last Synced: 2024-04-14T20:21:12.679Z (9 months ago)
- Language: CSS
- Size: 215 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Widget Draft
## List widget draft
### Code style
Use [Airbnb JavaScript Style Guide][codestyle].
### Install
Install [livereload chrome plugin][livereload].
```bash
# Inside project folder
npm install -g gulp bower
npm install && bower install
```### Run
```bash
# Watch files and refresh browser on change
gulp watch# or simply serve current version of files
gulp serve
```### Test
```bash
# Watch files and launch tests on change
gulp watch-test# or just launch tests
gulp test
```### Build
Build project: minify js, css and images, concat files etc. Result will be
available in `dist` directory.```bash
gulp build
```### Docs
Build docs and put them into `dist/docs`
```bash
gulp docs
```### JSHint
[JSHint][jshint] runs automatically on every task.
[livereload]: https://chrome.google.com/webstore/detail/livereload/jnihajbhpnppcggbcgedagnkighmdlei?hl=en
[codestyle]: https://github.com/airbnb/javascript
[jshint]: http://www.jshint.com/