Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davidsonfellipe/grunt-workflow
:boar: My grunt workflow
https://github.com/davidsonfellipe/grunt-workflow
Last synced: 2 months ago
JSON representation
:boar: My grunt workflow
- Host: GitHub
- URL: https://github.com/davidsonfellipe/grunt-workflow
- Owner: davidsonfellipe
- License: mit
- Created: 2014-08-29T01:01:00.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-02T01:04:48.000Z (over 9 years ago)
- Last Synced: 2024-04-09T14:33:39.212Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 377 KB
- Stars: 14
- Watchers: 3
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
grunt-workflow
==============
This is a DEMO for you start your project using Grunt, and currently watching and compiling Sass/LESS to CSS, watching/linting JS code and some other amazing things.##Configure grunt
`make setup`
##package.json
if you're working in a mature project, can be not safe define version equal to 'latest', in this case, define one specific version to avoid breaking changes.
```javascript
{
"private": true,
"author": "Your Name ",
"devDependencies": {
"grunt": "latest",
"load-grunt-config": "latest",
"grunt-contrib-uglify": "latest",
"grunt-contrib-concat": "latest",
"grunt-contrib-watch": "latest"
}
}
```Structure:
```bash
.
|── build/
|── src/
| └── img/ (all imgs files)
| └── js/ (all js files)
| └── scss/ (all scss files)
| └── less/ (all less files)
└── .csslintrc
└── .editorconfig
└── .gitignore
└── .jshintrc
└── Gruntfile.js
└── package.json
└── README.md
```