gpt4 book ai didi

javascript - watch 和手写笔

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:46:18 25 4
gpt4 key购买 nike

不知道如何嵌套 grunt watchstylus 编译器(livereload 稍后会来)

我也尝试使用“new”grunt newer,但我的代码中一定有问题。

有什么建议吗?

grunt.initConfig({

stylus: {
compile: {
options: {
paths: ['stylus'],

import: [
'nib/*'
]
},
files: {
'css/style.css': 'stylus/style.styl',
},
},

},
watch: {
stylus: {
files: ['*/*.*'],
task: ['newer:stylus:compile'],
options : { livereload: true },
},
},

});


grunt.loadNpmTasks('grunt-contrib-stylus');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-newer');

grunt.registerTask('compile', ['newer:stylus:all']);

此外,如果我运行 grunt watch,它运行良好但什么也不做。而且,如果我运行 grunt stylus,它会完美地编译我的 css。

最佳答案

好吧,在您的原始代码中,您在 it should be tasks 时使用选项 task (复数)。这是我的第一个猜测。

watch: {
stylus: {
files: ['*/*.*'],
tasks: ['stylus:compile'], // This needs to be "tasks" (not "task")
options : { livereload: true },
},
},

我也不认为你需要前面的 newer 位。

关于javascript - watch 和手写笔,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27443188/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com