Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 grunfile.js 中指定当前目录?
看起来,grunt 任务中的所有路径都相对于 grunt 的文件位置。
我的意图是能够在任何项目的子文件夹中运行 grunt 任务,因为我不知道文件名。
让我澄清一下,例如,我有 50 个包含组件的文件夹,在某个文件夹中我有 2 个 *.less 文件。我想要的是能够在该特定文件夹中运行 lesscss 授权任务,它将这些 *.less 文件转换为 *.css (保留原始名称)。
在我的项目grunt-jscs-checker中,我们以这种方式进行测试:
grunt-jscs-checker
grunt.file.setBase( "test" );
代码