运行 grunt 并编译 sass 到与源文件相同的目录

Running grunt and compiling sass to the same directory as source files

我的所有 scss 都在父文件夹下,我有一个繁重的任务 运行 编译它们。

对于这个特定的项目,不会有构建或输出文件夹。我想将所有 scss 文件编译到它们的同一目录中。

+ folder + component - style.scss - style.css + another - style.scss - style.css

我到处搜索,找不到这方面的任何例子。 Grunt 甚至有可能吗?

弄清楚了并想post这只是为了防止其他人需要实现它。

cwd 和 dest 需要是相同的值。

dist: {
            files: [{
                expand: true, // Recursive
                cwd: "<%= pathTo.Root %>", // The startup directory
                src: '**/*.{sass,scss}', // Source files
                dest: "<%= pathToRoot %>",
                ext: ".css" // File extension 
            }]
        }