Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
added slurp task and downloaded 3.10
  • Loading branch information
tomwayson committed Oct 22, 2014
commit bbe920d0b5ddbda5ee38a776c85a35edc14409d9
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
bower_components
/.idea/
src/esri
29 changes: 29 additions & 0 deletions gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,19 +76,44 @@ module.exports = function(grunt) {
]
}
},
<<<<<<< HEAD
buildGhPages: {
ghPages: {
// Leave empty if you just want to run the defaults
}
},
});
=======

esri_slurp: {
dev: {
options: {
version: '3.10',
packageLocation: 'src/esri',
beautify: true
}
},
travis: {
options: {
version: '3.10',
packageLocation: 'src/esri',
beautify: false
}
}
}
});
>>>>>>> added slurp task and downloaded 3.10

grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-bower-task');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-open');
<<<<<<< HEAD
grunt.loadNpmTasks('grunt-build-gh-pages');
=======
grunt.loadNpmTasks('grunt-esri-slurp');
>>>>>>> added slurp task and downloaded 3.10

grunt.registerTask('default', ['watch']);

Expand All @@ -107,6 +132,10 @@ module.exports = function(grunt) {

grunt.registerTask('hint', ['jshint']);

<<<<<<< HEAD
grunt.registerTask('gh-pages', ['buildGhPages:ghPages']);

=======
grunt.registerTask('slurp', ['esri_slurp:dev']);
>>>>>>> added slurp task and downloaded 3.10
};
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
"grunt-contrib-connect": "~0.7.1",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-esri-slurp": "^0.6.0",
"grunt-open": "~0.2.3"
},
"engines": {
Expand Down