mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
7 lines
220 B
CoffeeScript
7 lines
220 B
CoffeeScript
module.exports = (grunt) ->
|
|
{spawn} = require('./task-helpers')(grunt)
|
|
|
|
grunt.registerTask 'nof', 'Un-focus all specs', ->
|
|
nof = require.resolve('.bin/nof')
|
|
spawn({cmd: nof, args: ['spec', 'src']}, @async())
|