grunt-browserify icon indicating copy to clipboard operation
grunt-browserify copied to clipboard

`watch: true` does not work with paths containing spaces

Open bramus opened this issue 10 years ago • 0 comments

module.exports =
    dev:
        src: ['src/scripts/index.coffee']
        dest: 'build/scripts/admin.js'
        options:
            watch: true
            keepAlive: true
            transform: [
                [{}, 'coffeeify'],
                [config.envify.dev, 'envify']
            ]
            browserifyOptions:
                extensions: ['.coffee']
                debug: true

The snippet above does not work with a folder that contains a space in the pathname. It does work fine when moving the folder to a location containing no spaces in the pathname.

bramus avatar Dec 11 '15 13:12 bramus