我们正在使用Node-Sass将SCSS文件编译为css。下面是我正在使用的目录结构。
使用Node-Sass我想生成一个Dist目录,其中所有已编译的CSS文件将转到各自的目录。
我已尝试过以下NPM脚本
node-sass --include-path packages/ --include-path ./node_modules --include-path packages/**/node_modules ./packages/ -o ./build"
我收到错误"找不到输入文件"。
错误的任何指示都会有所帮助。
答案 0 :(得分:0)
您正在传递多个版本的include-path
,这些版本不是CLI中的valide。如果需要多个路径,请使用API。