gruntjs / grunt-contrib-watch

Run tasks whenever watched files change.
http://gruntjs.com/
MIT License
1.98k stars 357 forks source link

Renamed directory, watch is no longer compiling changes? #424

Open vongoh opened 9 years ago

vongoh commented 9 years ago

I had a Grunt setup running ['sass', 'autoprefixer', 'connect', 'watch'] with no issues, the processes were watching my folders for change and refreshed my browser with no issues.

Then I renamed the directory on disk - from c:\ruby-sass-susy to c:\libsass-susy -- sadly, this just hosed me :( Now when I run my default grunt it runs the connect server and compiles the files the first time -- throws up a browser with my project ready to go.

But changing and saving on any .scss does not compile anything. It looks like watch is seeing me make the change? But no compilation changes are happening and no activity at all after that.

What happened? (excuse me I am not a Grunt or javascript programming expert)

Here is my Gruntfile:

// Gruntfile for LibSass - 02/16/15

module.exports = function(grunt) {

    'use strict';

    grunt.loadNpmTasks('grunt-sass');
    grunt.loadNpmTasks('grunt-autoprefixer');
    grunt.loadNpmTasks('grunt-contrib-imagemin');
    grunt.loadNpmTasks('grunt-contrib-concat');
    grunt.loadNpmTasks('grunt-contrib-uglify');
    grunt.loadNpmTasks('grunt-contrib-connect');
    grunt.loadNpmTasks('grunt-contrib-watch');

    grunt.initConfig({

        pkg: grunt.file.readJSON('package.json'),

        // Sass (grunt-sass)
        sass: {
            options: {
                sourceMap: true, // Create source map
                outputStyle: 'expanded' // Specify output
            },
            dist: {

                files: [
                    {
                        expand: true, // Recursive
                        cwd: "scss", // The startup directory
                        src: ["**/*.scss"], // Source files
                        dest: "css", // Destination
                        ext: ".css" // File extension 
                    }
                ]
            }
        },

        // Autoprefixer
        autoprefixer: {
            options: {
                browsers: ['last 2 versions'],
                map: true // Update source map (creates one if it can't find an existing map)
            },

            // Prefix all files
            multiple_files: {
                src: 'css/**/*.css'
            },
        },

        // Image Minification -- run on demand w/ `grunt imagemin`
        imagemin: {
            dynamic: {
                files: [{
                    expand: true,
                    cwd: 'img/',
                    src: ['**/*.{png,jpg,gif}'],
                    dest: 'img/build/'
                }]
            }
        },

        // Concatenation Plugin
        concat: {

            dist: {
                    src: [
                        'js/libs/*.js', // All JS in the libs folder
                        'js/global.js'  // This specific file
                    ],

                    dest: 'js/build/production.js',
                }
        },

        // JavaScript Minification
        uglify: {
            build: {
                src: 'js/build/production.js',
                dest: 'js/build/production.min.js'
            }
        },

        // Grunt connect (server)
        connect: {
            server: {
                options: {
                    livereload: 1337,
                    port: 9001,
                    base: '',
                    open: {
                        target: 'http://localhost:9001/',
                    }
                }
            },
        },

        // Watch!
        watch: {
          sass: {
            files: ['scss/**/*.{scss,sass}'],
          },

          livereload: {
            files: ['*.html', '*.php', 'img/**/*.{png,jpg,jpeg,gif,webp,svg}'],
            options: {
              livereload: true,
            },
          },
        }
    });

    // Default Sass Server
    grunt.registerTask('default', ['sass', 'autoprefixer', 'connect', 'watch']);

};

Here is what results when I run my default grunt task, and change a file to test it:

S:\libsass-susy>grunt
Running "sass:dist" (sass) task

Running "autoprefixer:multiple_files" (autoprefixer) task
File css/global.css created.
File css/global.css.map created (source map).

Running "connect:server" (connect) task
Started connect web server on http://0.0.0.0:9001

Running "watch" task
Waiting...
>> File "scss\00-config\_config.scss" changed
~~

Note that `watch` sees the change -- but no compilation takes place after that, it just dies.

And here is verbose output from the command line:

S:\libsass-susy>grunt --verbose Initializing Command-line options: --verbose

Reading "Gruntfile.js" Gruntfile...OK

Registering Gruntfile tasks.

Registering "grunt-sass" local Npm module tasks. Reading S:\libsass-susy\node_modules\grunt-sass\package.json...OK Parsing S:\libsass-susy\node_modules\grunt-sass\package.json...OK

node-sass version: 2.0.1 libsass version: 3.1.0

Loading "sass.js" tasks...OK

Registering "grunt-autoprefixer" local Npm module tasks. Reading S:\libsass-susy\node_modules\grunt-autoprefixer\package.json...OK Parsing S:\libsass-susy\node_modules\grunt-autoprefixer\package.json...OK Loading "autoprefixer.js" tasks...OK

Registering "grunt-contrib-imagemin" local Npm module tasks. Reading S:\libsass-susy\node_modules\grunt-contrib-imagemin\package.json...OK Parsing S:\libsass-susy\node_modules\grunt-contrib-imagemin\package.json...OK Loading "imagemin.js" tasks...OK

Registering "grunt-contrib-concat" local Npm module tasks. Reading S:\libsass-susy\node_modules\grunt-contrib-concat\package.json...OK Parsing S:\libsass-susy\node_modules\grunt-contrib-concat\package.json...OK Loading "concat.js" tasks...OK

Registering "grunt-contrib-uglify" local Npm module tasks. Reading S:\libsass-susy\node_modules\grunt-contrib-uglify\package.json...OK Parsing S:\libsass-susy\node_modules\grunt-contrib-uglify\package.json...OK Loading "uglify.js" tasks...OK

Registering "grunt-contrib-connect" local Npm module tasks. Reading S:\libsass-susy\node_modules\grunt-contrib-connect\package.json...OK Parsing S:\libsass-susy\node_modules\grunt-contrib-connect\package.json...OK Loading "connect.js" tasks...OK

Registering "grunt-contrib-watch" local Npm module tasks. Reading S:\libsass-susy\node_modules\grunt-contrib-watch\package.json...OK Parsing S:\libsass-susy\node_modules\grunt-contrib-watch\package.json...OK Loading "watch.js" tasks...OK

No tasks specified, running default tasks. Running tasks: default

Running "default" task

Running "sass" task

Running "sass:dist" (sass) task Verifying property sass.dist exists in config...OK Files: scss/00-config/_config.scss -> css/00-config/_config.css Files: scss/00-config/_fonts.scss -> css/00-config/_fonts.css Files: scss/00-config/_rwd-scales.scss -> css/00-config/_rwd-scales.css Files: scss/01-tools/_functions.scss -> css/01-tools/_functions.css Files: scss/01-tools/_mixins.scss -> css/01-tools/_mixins.css Files: scss/01-tools/_x-mixins-archive.scss -> css/01-tools/_x-mixins-archive.css Files: scss/01-tools/bourbon/_bourbon-deprecated-upcoming.scss -> css/01-tools/bourbon/_bourbon-deprec ated-upcoming.css Files: scss/01-tools/bourbon/_bourbon.scss -> css/01-tools/bourbon/_bourbon.css Files: scss/01-tools/bourbon/addons/_border-color.scss -> css/01-tools/bourbon/addons/_border-color.cs s Files: scss/01-tools/bourbon/addons/_border-radius.scss -> css/01-tools/bourbon/addons/_border-radius. css Files: scss/01-tools/bourbon/addons/_border-style.scss -> css/01-tools/bourbon/addons/_border-style.cs s Files: scss/01-tools/bourbon/addons/_border-width.scss -> css/01-tools/bourbon/addons/_border-width.cs s Files: scss/01-tools/bourbon/addons/_buttons.scss -> css/01-tools/bourbon/addons/_buttons.css Files: scss/01-tools/bourbon/addons/_clearfix.scss -> css/01-tools/bourbon/addons/_clearfix.css Files: scss/01-tools/bourbon/addons/_ellipsis.scss -> css/01-tools/bourbon/addons/_ellipsis.css Files: scss/01-tools/bourbon/addons/_font-stacks.scss -> css/01-tools/bourbon/addons/_font-stacks.css Files: scss/01-tools/bourbon/addons/_hide-text.scss -> css/01-tools/bourbon/addons/_hide-text.css Files: scss/01-tools/bourbon/addons/_margin.scss -> css/01-tools/bourbon/addons/_margin.css Files: scss/01-tools/bourbon/addons/_padding.scss -> css/01-tools/bourbon/addons/_padding.css Files: scss/01-tools/bourbon/addons/_position.scss -> css/01-tools/bourbon/addons/_position.css Files: scss/01-tools/bourbon/addons/_prefixer.scss -> css/01-tools/bourbon/addons/_prefixer.css Files: scss/01-tools/bourbon/addons/_retina-image.scss -> css/01-tools/bourbon/addons/_retina-image.cs s Files: scss/01-tools/bourbon/addons/_size.scss -> css/01-tools/bourbon/addons/_size.css Files: scss/01-tools/bourbon/addons/_text-inputs.scss -> css/01-tools/bourbon/addons/_text-inputs.css Files: scss/01-tools/bourbon/addons/_timing-functions.scss -> css/01-tools/bourbon/addons/_timing-func tions.css Files: scss/01-tools/bourbon/addons/_triangle.scss -> css/01-tools/bourbon/addons/_triangle.css Files: scss/01-tools/bourbon/addons/_word-wrap.scss -> css/01-tools/bourbon/addons/_word-wrap.css Files: scss/01-tools/bourbon/css3/_animation.scss -> css/01-tools/bourbon/css3/_animation.css Files: scss/01-tools/bourbon/css3/_appearance.scss -> css/01-tools/bourbon/css3/_appearance.css Files: scss/01-tools/bourbon/css3/_backface-visibility.scss -> css/01-tools/bourbon/css3/_backface-vis ibility.css Files: scss/01-tools/bourbon/css3/_background-image.scss -> css/01-tools/bourbon/css3/_background-imag e.css Files: scss/01-tools/bourbon/css3/_background.scss -> css/01-tools/bourbon/css3/_background.css Files: scss/01-tools/bourbon/css3/_border-image.scss -> css/01-tools/bourbon/css3/_border-image.css Files: scss/01-tools/bourbon/css3/_calc.scss -> css/01-tools/bourbon/css3/_calc.css Files: scss/01-tools/bourbon/css3/_columns.scss -> css/01-tools/bourbon/css3/_columns.css Files: scss/01-tools/bourbon/css3/_filter.scss -> css/01-tools/bourbon/css3/_filter.css Files: scss/01-tools/bourbon/css3/_flex-box.scss -> css/01-tools/bourbon/css3/_flex-box.css Files: scss/01-tools/bourbon/css3/_font-face.scss -> css/01-tools/bourbon/css3/_font-face.css Files: scss/01-tools/bourbon/css3/_font-feature-settings.scss -> css/01-tools/bourbon/css3/_font-featu re-settings.css Files: scss/01-tools/bourbon/css3/_hidpi-media-query.scss -> css/01-tools/bourbon/css3/_hidpi-media-qu ery.css Files: scss/01-tools/bourbon/css3/_hyphens.scss -> css/01-tools/bourbon/css3/_hyphens.css Files: scss/01-tools/bourbon/css3/_image-rendering.scss -> css/01-tools/bourbon/css3/_image-rendering. css Files: scss/01-tools/bourbon/css3/_keyframes.scss -> css/01-tools/bourbon/css3/_keyframes.css Files: scss/01-tools/bourbon/css3/_linear-gradient.scss -> css/01-tools/bourbon/css3/_linear-gradient. css Files: scss/01-tools/bourbon/css3/_perspective.scss -> css/01-tools/bourbon/css3/_perspective.css Files: scss/01-tools/bourbon/css3/_placeholder.scss -> css/01-tools/bourbon/css3/_placeholder.css Files: scss/01-tools/bourbon/css3/_radial-gradient.scss -> css/01-tools/bourbon/css3/_radial-gradient. css Files: scss/01-tools/bourbon/css3/_selection.scss -> css/01-tools/bourbon/css3/_selection.css Files: scss/01-tools/bourbon/css3/_text-decoration.scss -> css/01-tools/bourbon/css3/_text-decoration. css Files: scss/01-tools/bourbon/css3/_transform.scss -> css/01-tools/bourbon/css3/_transform.css Files: scss/01-tools/bourbon/css3/_transition.scss -> css/01-tools/bourbon/css3/_transition.css Files: scss/01-tools/bourbon/css3/_user-select.scss -> css/01-tools/bourbon/css3/_user-select.css Files: scss/01-tools/bourbon/functions/_assign-inputs.scss -> css/01-tools/bourbon/functions/_assign-i nputs.css Files: scss/01-tools/bourbon/functions/_contains-falsy.scss -> css/01-tools/bourbon/functions/_contain s-falsy.css Files: scss/01-tools/bourbon/functions/_contains.scss -> css/01-tools/bourbon/functions/_contains.css Files: scss/01-tools/bourbon/functions/_is-length.scss -> css/01-tools/bourbon/functions/_is-length.cs s Files: scss/01-tools/bourbon/functions/_is-light.scss -> css/01-tools/bourbon/functions/_is-light.css Files: scss/01-tools/bourbon/functions/_is-number.scss -> css/01-tools/bourbon/functions/_is-number.cs s Files: scss/01-tools/bourbon/functions/_is-size.scss -> css/01-tools/bourbon/functions/_is-size.css Files: scss/01-tools/bourbon/functions/_modular-scale.scss -> css/01-tools/bourbon/functions/_modular- scale.css Files: scss/01-tools/bourbon/functions/_px-to-em.scss -> css/01-tools/bourbon/functions/_px-to-em.css Files: scss/01-tools/bourbon/functions/_px-to-rem.scss -> css/01-tools/bourbon/functions/_px-to-rem.cs s Files: scss/01-tools/bourbon/functions/_shade.scss -> css/01-tools/bourbon/functions/_shade.css Files: scss/01-tools/bourbon/functions/_strip-units.scss -> css/01-tools/bourbon/functions/_strip-unit s.css Files: scss/01-tools/bourbon/functions/_tint.scss -> css/01-tools/bourbon/functions/_tint.css Files: scss/01-tools/bourbon/functions/_transition-property-name.scss -> css/01-tools/bourbon/function s/_transition-property-name.css Files: scss/01-tools/bourbon/functions/_unpack.scss -> css/01-tools/bourbon/functions/_unpack.css Files: scss/01-tools/bourbon/helpers/_convert-units.scss -> css/01-tools/bourbon/helpers/_convert-unit s.css Files: scss/01-tools/bourbon/helpers/_directional-values.scss -> css/01-tools/bourbon/helpers/_directi onal-values.css Files: scss/01-tools/bourbon/helpers/_font-source-declaration.scss -> css/01-tools/bourbon/helpers/_fo nt-source-declaration.css Files: scss/01-tools/bourbon/helpers/gradient-positions-parser.scss -> css/01-tools/bourbon/helpers/ gradient-positions-parser.css Files: scss/01-tools/bourbon/helpers/_linear-angle-parser.scss -> css/01-tools/bourbon/helpers/_linear -angle-parser.css Files: scss/01-tools/bourbon/helpers/_linear-gradient-parser.scss -> css/01-tools/bourbon/helpers/_lin ear-gradient-parser.css Files: scss/01-tools/bourbon/helpers/_linear-positions-parser.scss -> css/01-tools/bourbon/helpers/_li near-positions-parser.css Files: scss/01-tools/bourbon/helpers/linear-side-corner-parser.scss -> css/01-tools/bourbon/helpers/ linear-side-corner-parser.css Files: scss/01-tools/bourbon/helpers/_radial-arg-parser.scss -> css/01-tools/bourbon/helpers/_radial-a rg-parser.css Files: scss/01-tools/bourbon/helpers/_radial-gradient-parser.scss -> css/01-tools/bourbon/helpers/_rad ial-gradient-parser.css Files: scss/01-tools/bourbon/helpers/_radial-positions-parser.scss -> css/01-tools/bourbon/helpers/_ra dial-positions-parser.css Files: scss/01-tools/bourbon/helpers/_render-gradients.scss -> css/01-tools/bourbon/helpers/_render-gr adients.css Files: scss/01-tools/bourbon/helpers/_shape-size-stripper.scss -> css/01-tools/bourbon/helpers/_shape- size-stripper.css Files: scss/01-tools/bourbon/helpers/_str-to-num.scss -> css/01-tools/bourbon/helpers/_str-to-num.css Files: scss/01-tools/bourbon/settings/_asset-pipeline.scss -> css/01-tools/bourbon/settings/_asset-pip eline.css Files: scss/01-tools/bourbon/settings/_prefixer.scss -> css/01-tools/bourbon/settings/_prefixer.css Files: scss/01-tools/bourbon/settings/_px-to-em.scss -> css/01-tools/bourbon/settings/_px-to-em.css Files: scss/02-base/_base.scss -> css/02-base/_base.css Files: scss/02-base/_meyer-reset.scss -> css/02-base/_meyer-reset.css Files: scss/02-base/_normalize.scss -> css/02-base/_normalize.css Files: scss/02-base/_typography.scss -> css/02-base/_typography.css Files: scss/03-layout/_layout.scss -> css/03-layout/_layout.css Files: scss/04-objects/_o-embed.scss -> css/04-objects/_o-embed.css Files: scss/04-objects/_o-icon.scss -> css/04-objects/_o-icon.css Files: scss/04-objects/_o-img.scss -> css/04-objects/_o-img.css Files: scss/04-objects/_o-island.scss -> css/04-objects/_o-island.css Files: scss/04-objects/_o-list-group.scss -> css/04-objects/_o-list-group.css Files: scss/04-objects/_o-media-object.scss -> css/04-objects/_o-media-object.css Files: scss/05-components/_c-button.scss -> css/05-components/_c-button.css Files: scss/05-components/_c-nav.scss -> css/05-components/_c-nav.css Files: scss/05-components/_components.scss -> css/05-components/_components.css Files: scss/06-states/_2x.scss -> css/06-states/_2x.css Files: scss/06-states/_print.scss -> css/06-states/_print.css Files: scss/06-states/_states.scss -> css/06-states/_states.css Files: scss/07-trumps/_u-utils--mixins.scss -> css/07-trumps/_u-utils--mixins.css Files: scss/07-trumps/_u-utils.scss -> css/07-trumps/_u-utils.css Files: scss/global.scss -> css/global.css Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Options: precision=10, sourceMap, outputStyle="expanded" Writing css/global.css...OK Writing css/global.css.map...OK

Running "autoprefixer" task

Running "autoprefixer:multiple_files" (autoprefixer) task Verifying property autoprefixer.multiple_files exists in config...OK Files: css/global.css Options: cascade, diff=false, map, silent=false, remove, browsers=["last 2 versions"] Reading css/global.css...OK Writing css/global.css...OK File css/global.css created. Writing css/global.css.map...OK File css/global.css.map created (source map).

Running "connect" task

Running "connect:server" (connect) task Verifying property connect.server exists in config...OK File: [no files] Options: protocol="http", port=9001, hostname="0.0.0.0", base="", directory=null, keepalive=false, deb ug=false, livereload=1337, open={"target":"http://localhost:9001/"}, useAvailablePort=false, onCreateS erver=null, middleware=null Started connect web server on http://0.0.0.0:9001

Running "watch" task Waiting... Verifying property watch exists in config...OK Verifying property watch.sass.files exists in config...OK Verifying property watch.livereload.files exists in config...OK Live reload server started on port: 35729 Watching scss\00-config_config.scss for changes. Watching scss\00-config_fonts.scss for changes. Watching scss\00-config_rwd-scales.scss for changes. Watching scss\01-tools_functions.scss for changes. Watching scss\01-tools\bourbon for changes. Watching scss\01-tools_mixins.scss for changes. Watching scss\01-tools_x-mixins-archive.scss for changes. Watching scss\01-tools\bourbon_bourbon-deprecated-upcoming.scss for changes. Watching scss\01-tools\bourbon\addons for changes. Watching scss\01-tools\bourbon\css3 for changes. Watching scss\01-tools\bourbon\functions for changes. Watching scss\01-tools\bourbon\helpers for changes. Watching scss\01-tools\bourbon\settings for changes. Watching scss\01-tools\bourbon_bourbon.scss for changes. Watching scss\01-tools\bourbon\addons_border-color.scss for changes. Watching scss\01-tools\bourbon\addons_border-radius.scss for changes. Watching scss\01-tools\bourbon\addons_border-style.scss for changes. Watching scss\01-tools\bourbon\addons_border-width.scss for changes. Watching scss\01-tools\bourbon\addons_buttons.scss for changes. Watching scss\01-tools\bourbon\addons_clearfix.scss for changes. Watching scss\01-tools\bourbon\addons_ellipsis.scss for changes. Watching scss\01-tools\bourbon\addons_font-stacks.scss for changes. Watching scss\01-tools\bourbon\addons_hide-text.scss for changes. Watching scss\01-tools\bourbon\addons_margin.scss for changes. Watching scss\01-tools\bourbon\addons_padding.scss for changes. Watching scss\01-tools\bourbon\addons_position.scss for changes. Watching scss\01-tools\bourbon\addons_prefixer.scss for changes. Watching scss\01-tools\bourbon\addons_retina-image.scss for changes. Watching scss\01-tools\bourbon\addons_size.scss for changes. Watching scss\01-tools\bourbon\addons_text-inputs.scss for changes. Watching scss\01-tools\bourbon\addons_timing-functions.scss for changes. Watching scss\01-tools\bourbon\addons_triangle.scss for changes. Watching scss\01-tools\bourbon\addons_word-wrap.scss for changes. Watching scss\01-tools\bourbon\css3_animation.scss for changes. Watching scss\01-tools\bourbon\css3_appearance.scss for changes. Watching scss\01-tools\bourbon\css3_backface-visibility.scss for changes. Watching scss\01-tools\bourbon\css3_background-image.scss for changes. Watching scss\01-tools\bourbon\css3_background.scss for changes. Watching scss\01-tools\bourbon\css3_border-image.scss for changes. Watching scss\01-tools\bourbon\css3_calc.scss for changes. Watching scss\01-tools\bourbon\css3_columns.scss for changes. Watching scss\01-tools\bourbon\css3_filter.scss for changes. Watching scss\01-tools\bourbon\css3_flex-box.scss for changes. Watching scss\01-tools\bourbon\css3_font-face.scss for changes. Watching scss\01-tools\bourbon\css3_font-feature-settings.scss for changes. Watching scss\01-tools\bourbon\css3_hidpi-media-query.scss for changes. Watching scss\01-tools\bourbon\css3_hyphens.scss for changes. Watching scss\01-tools\bourbon\css3_image-rendering.scss for changes. Watching scss\01-tools\bourbon\css3_keyframes.scss for changes. Watching scss\01-tools\bourbon\css3_linear-gradient.scss for changes. Watching scss\01-tools\bourbon\css3_perspective.scss for changes. Watching scss\01-tools\bourbon\css3_placeholder.scss for changes. Watching scss\01-tools\bourbon\css3_radial-gradient.scss for changes. Watching scss\01-tools\bourbon\css3_selection.scss for changes. Watching scss\01-tools\bourbon\css3_text-decoration.scss for changes. Watching scss\01-tools\bourbon\css3_transform.scss for changes. Watching scss\01-tools\bourbon\css3_transition.scss for changes. Watching scss\01-tools\bourbon\css3_user-select.scss for changes. Watching scss\01-tools\bourbon\functions_assign-inputs.scss for changes. Watching scss\01-tools\bourbon\functions_contains-falsy.scss for changes. Watching scss\01-tools\bourbon\functions_contains.scss for changes. Watching scss\01-tools\bourbon\functions_is-length.scss for changes. Watching scss\01-tools\bourbon\functions_is-light.scss for changes. Watching scss\01-tools\bourbon\functions_is-number.scss for changes. Watching scss\01-tools\bourbon\functions_is-size.scss for changes. Watching scss\01-tools\bourbon\functions_modular-scale.scss for changes. Watching scss\01-tools\bourbon\functions_px-to-em.scss for changes. Watching scss\01-tools\bourbon\functions_px-to-rem.scss for changes. Watching scss\01-tools\bourbon\functions_shade.scss for changes. Watching scss\01-tools\bourbon\functions_strip-units.scss for changes. Watching scss\01-tools\bourbon\functions_tint.scss for changes. Watching scss\01-tools\bourbon\functions_transition-property-name.scss for changes. Watching scss\01-tools\bourbon\functions_unpack.scss for changes. Watching scss\01-tools\bourbon\helpers_convert-units.scss for changes. Watching scss\01-tools\bourbon\helpers_directional-values.scss for changes. Watching scss\01-tools\bourbon\helpers_font-source-declaration.scss for changes. Watching scss\01-tools\bourbon\helpers_gradient-positions-parser.scss for changes. Watching scss\01-tools\bourbon\helpers_linear-angle-parser.scss for changes. Watching scss\01-tools\bourbon\helpers_linear-gradient-parser.scss for changes. Watching scss\01-tools\bourbon\helpers_linear-positions-parser.scss for changes. Watching scss\01-tools\bourbon\helpers_linear-side-corner-parser.scss for changes. Watching scss\01-tools\bourbon\helpers_radial-arg-parser.scss for changes. Watching scss\01-tools\bourbon\helpers_radial-gradient-parser.scss for changes. Watching scss\01-tools\bourbon\helpers_radial-positions-parser.scss for changes. Watching scss\01-tools\bourbon\helpers_render-gradients.scss for changes. Watching scss\01-tools\bourbon\helpers_shape-size-stripper.scss for changes. Watching scss\01-tools\bourbon\helpers_str-to-num.scss for changes. Watching scss\01-tools\bourbon\settings_asset-pipeline.scss for changes. Watching scss\01-tools\bourbon\settings_prefixer.scss for changes. Watching scss\01-tools\bourbon\settings_px-to-em.scss for changes. Watching scss\02-base_base.scss for changes. Watching scss\02-base_meyer-reset.scss for changes. Watching scss\02-base_normalize.scss for changes. Watching scss\02-base_typography.scss for changes. Watching scss\03-layout_layout.scss for changes. Watching scss\04-objects_o-embed.scss for changes. Watching scss\04-objects_o-icon.scss for changes. Watching scss\04-objects_o-img.scss for changes. Watching scss\04-objects_o-island.scss for changes. Watching scss\04-objects_o-list-group.scss for changes. Watching scss\04-objects_o-media-object.scss for changes. Watching scss\05-components_c-button.scss for changes. Watching scss\05-components_c-nav.scss for changes. Watching scss\05-components_components.scss for changes. Watching scss\06-states_2x.scss for changes. Watching scss\06-states_print.scss for changes. Watching scss\06-states_states.scss for changes. Watching scss\07-trumps_u-utils--mixins.scss for changes. Watching scss\07-trumps_u-utils.scss for changes. Watching scss\global.scss for changes. Watching scss\00-config for changes. Watching scss\01-tools for changes. Watching scss\02-base for changes. Watching scss\03-layout for changes. Watching scss\04-objects for changes. Watching scss\05-components for changes. Watching scss\06-states for changes. Watching scss\07-trumps for changes. Watching index.html for changes. Watching .git for changes. Watching bower_components for changes. Watching css for changes. Watching img for changes. Watching js for changes. Watching node_modules for changes. Watching scss for changes. Watching temp.html for changes. Watching img\image.png for changes. Watching img\build for changes. Watching img\logo-inkscapesvg.svg for changes. Watching img\logo.png for changes. Watching img\logo.svg for changes.

File "scss\00-config_config.scss" changed. ~~

leedorian commented 8 years ago

Also for new added files or folders did not trigger compiling.