Skip to content

Commit

Permalink
Removed derequire task
Browse files Browse the repository at this point in the history
  • Loading branch information
svermeulen committed May 10, 2015
1 parent 8f52b70 commit 620974c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module.exports = (grunt) ->

grunt.registerTask('dev', ['connect:server', 'karma:server'])

grunt.registerTask('dist', ['clean', 'lodash', 'browserify', 'derequire', 'uglify', 'stylus', 'concat'])
grunt.registerTask('dist', ['clean', 'lodash', 'browserify', 'uglify', 'stylus', 'concat'])
grunt.registerTask('release', ['dist', 'examples', 'copy', 'compress'])

grunt.registerTask('server', ['connect:server:keepalive'])
Expand Down
10 changes: 0 additions & 10 deletions config/grunt/dist.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,6 @@ module.exports = (grunt) ->
'dist/quill.snow.css': ['dist/quill.snow.css']
)

grunt.registerTask('derequire', ->
done = this.async()
grunt.util.spawn(
cmd: './node_modules/.bin/derequire'
args: ['dist/quill.js']
, (err, result, code) ->
fs.writeFile('dist/quill.js', result.stdout, done)
)
)

grunt.config('lodash',
options:
modifier: 'modern'
Expand Down

0 comments on commit 620974c

Please sign in to comment.