An open API service indexing awesome lists of open source software.

https://github.com/gableroux/local-grunt-example

Example project I built while helping a colleague to demonstrate local grunt usage with package.json
https://github.com/gableroux/local-grunt-example

circleci example grunt local sample sass test

Last synced: 6 months ago
JSON representation

Example project I built while helping a colleague to demonstrate local grunt usage with package.json

Awesome Lists containing this project

README

          

# Sample grunt project

[![Build Status](https://travis-ci.com/GabLeRoux/local-grunt-example.svg?branch=master)](https://travis-ci.com/GabLeRoux/local-grunt-example)

```bash
git init
npm init
npm i --save-dev grunt bower
npm i --save-dev grunt-contrib-uglify grunt-sass load-grunt-tasks
npm run bower -- init
npm run bower -- i font-awesome bootstrap jquery requirejs angular
```

Relevant files:

* [bower.json](/bower.json)
* [package.json](/package.json)
* [Gruntfile.js](/Gruntfile.js)

## Setup ci

```bash
travis init
```