Skip to content

Commit

Permalink
Merge pull request #104 from marmelab/0.3
Browse files Browse the repository at this point in the history
[RFR] Add views
  • Loading branch information
fzaninotto committed Nov 13, 2014
2 parents 3adba4d + c3b7c94 commit 49c54fb
Show file tree
Hide file tree
Showing 143 changed files with 3,918 additions and 2,372 deletions.
7 changes: 4 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
'use strict';
/*global module*/

module.exports = function (grunt) {
'use strict';

// Define the configuration for all the tasks
grunt.initConfig({
Expand Down Expand Up @@ -77,15 +78,15 @@ module.exports = function (grunt) {
// Watches files for changes and runs tasks based on the changed files
watch: {
configFiles: {
files: ['Gruntfile.js','grunt/grunt-*.json'],
files: ['Gruntfile.js', 'grunt/grunt-*.json'],
tasks: ['build:dev'],
options: {
// reload watchers since configuration may have changed
reload: true
}
},
javascripts: {
files: ['src/javascripts/ng-admin/**/*.js', 'src/javascripts/ng-admin/**/*.html'],
files: ['src/javascripts/ng-admin/**/**/*.js', 'src/javascripts/ng-admin/**/**/*.html'],
tasks: ['requirejs:dev']
},
sass: {
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
install:
bower install
npm install

test:
@grunt test
Loading

0 comments on commit 49c54fb

Please sign in to comment.