将所有 angular .styl 文件转换为普通 scss 或 css

Convert all angular .styl files to normal scss or css

有什么东西可以快速将所有项目 .styl(手写笔)文件更改为 scss 或 css 吗?像控制台命令之类的?因为我必须编辑 .styl 中的样式的项目,这真的很令人困惑。现在谁来做?

运行:

1) ng config defaults.styleExt=scss
2) Rename your existing .css/stylus files to .scss

不确定是否仍然相关,但使用以下脚本您可以将所有 .styl 文件重命名为 .scss(针对 ./css 进行相应调整)

##!/bin/bash

for file in $(find ./src -type f -name "*.styl");
do
  echo "$file";
  mv -- "$file" "${file%.styl}.scss"
done

最忙碌的部分是确保更改所有手写笔语法以匹配 sass 语法。 希望这有帮助