Skip to content

Commit

Permalink
Merge branch 'master' of github.com:samclarke/SCEditor
Browse files Browse the repository at this point in the history
  • Loading branch information
samclarke committed Mar 11, 2015
2 parents 9145b52 + fdc6e92 commit d6bc4a0
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
17 changes: 16 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,16 @@ module.exports = function (grunt) {
all: {
'pre-commit': 'test'
}
}
},

devUpdate: {
main: {
options: {
updateType: 'force',
semver: false
}
}
}
});


Expand All @@ -366,6 +375,7 @@ module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-saucelabs');
grunt.loadNpmTasks('grunt-webpack');
grunt.loadNpmTasks('grunt-githooks');
grunt.loadNpmTasks('grunt-dev-update');


grunt.registerTask('default', ['test']);
Expand Down Expand Up @@ -405,4 +415,9 @@ module.exports = function (grunt) {

// Alias dist to release for backwards compatibility
grunt.registerTask('dist', ['release']);

// Update dev dependencies
grunt.registerTask('dev-upd', [
'devUpdate:main'
]);
};
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
"grunt-jscs": "^1.5.0",
"grunt-saucelabs": "^8.6.0",
"grunt-webpack": "^1.0.8",
"grunt-dev-update": "^1.1.0",
"time-grunt": "^1.0.0"
}
}

0 comments on commit d6bc4a0

Please sign in to comment.