一条简单的命令就可以将 stylus 语法转换为 scss 语法

2020-02-26 20:16:49

一条简单的命令就可以将 stylus 语法转换为 scss 语法

因为早期有个项目用到了 stylus,stylus 开发起来很爽,但 stylus 基于缩进的代码在修改的时候不是很方便,加上所在团队开发使用的都是 SCSS ,为了便于维护和统一,准备将项目中的 stylus 替换成 SCSS。手动转换 stylus 浪费时间,且出错率大,当时在想也许别人也有这样的需求呢,所以就做了这样一个项目。请各位大佬动动你们发财的小手,给我点个 star,不胜感激。^_^

stylus-converter 配置

converter 配置

参数说明类型可选值默认值
quote转换中遇到字符串时,使用的引号类型string' / "'
conver转换类型,例如转换成 scss 语法stringscssscss
autoprefixer是否自动添加前缀,stylus 在转换 css 语法的时候,有些语法会自动添加前缀例如 @keyframesbooleantrue / falsetrue
indentVueStyleBlock在 .vue 文件中转换 stylus 时,可以添加一定数量的缩进,默认不添加缩进。numbernumber0

cli 配置

参数简写说明可选值默认值
--quote-q转换中遇到字符串时,使用的引号类型single / dobulesingle
--input-i输入名称,可以是文件或者是文件夹的路径--
--output-o输出名称,可以是文件或者是文件夹的路径--
--conver-c转换类型,例如转换成 scss 语法scssscss
--directory-d输入和输出路径是否是个目录yes / nono
--autoprefixer-p是否添加前缀yes / noyes
--indentVueStyleBlock-v在 .vue 文件中转换 stylus 时,可以添加一定数量的缩进,默认不添加缩进。number0

如何处理单行注释。

1. 先 fork 项目再 clone 项目到本地 git clone git@github.com:<your github>/stylus-converter.git 2. 进入项目目录 cd stylus-converter 3. 安装项目依赖 npm install 4. 进入 `node_modules/stylus/lib/lexer.js` 文件第 581 行。 5. 修改下列代码。 // 修改前 if ('/' == this.str[0] && '/' == this.str[1]) {   var end = this.str.indexOf('\n');   if (-1 == end) end = this.str.length;   this.skip(end);   return this.advance(); }  // 修改后 if ('/' == this.str[0] && '/' == this.str[1]) {   var end = this.str.indexOf('\n');   const str = this.str.substring(0, end)   if (-1 == end) end = this.str.length;   this.skip(end);   return new Token('comment', new nodes.Comment(str, suppress, true)) }

使用示例

// 下载 stylus-converter npm install -g stylus-converter // 运行 cli 转换文件 stylus-conver -i test.styl -o test.scss // 运行 cli 转换目录 // 先进入项目目录 mv src src-temp stylus-conver -d yes -i src-temp -o src

转换文件比较

转换前的 stylus 源码

handleParams(args...)   args @media screen and (max-width: 500px) and (min-width: 100px), (max-width: 500px) and (min-height: 200px)   .foo     color: #100 .foo   for i in 1..4     @media (min-width: 2 * (i + 7) px)

转换后的 SCSS 源码

@function handleParams($args...) {   @return $args; } @media screen and (max-width: 500px) and (min-width: 100px), (max-width: 500px) and (min-height: 200px) {   .foo {     color: #100;   } } .foo {   @for $i from 1 through 4 {     @media (min-width: 2 * ($i + 7) px) {       width: 100px * $i;     }   } }

如果你不想你转换的 @keyframes 添加默认前缀,请设置 options.autoprefixer = false

转换前的 .vue 文件

<template>   <div class="page-home">     <el-button>click me</el-button>   </div> </template> <style lang="stylus"> .page-home   .el-button     margin: 10px auto </style>

转换后的 .vue 文件

<template>   <div class="page-home">     <el-button>click me</el-button>   </div> </template> <style lang="scss"> .page-home {   .el-button {     margin: 10px auto;   } } </style>

搭建开发环境

1. 先 fork 项目再 clone 项目到本地 git clone git@github.com:<your github>/stylus-converter.git 2. 进入项目目录 cd stylus-converter 3. 安装项目依赖 npm install 4. 打包编译源文件 npm run build 5. 本地调试 cli npm link


  • 2018-11-22 21:20:04

    WebView内存泄漏--解决方法小结

    Android混合开发时经常用到WebView加载html等页面,而WebView的内存泄漏就是最经常遇到的问题,尤其是当项目中需要用webview加载的页面比较多时。 即使当我退出页面时在我的BrowserActivity的onDestroy()方法中进行内存占用回收(如下图)但并没有效果:

  • 2018-11-23 09:19:27

    论索引的重要性

    我还有什么能说的呢,看来索引基本能解决一切慢sql。好开心。

  • 2018-11-26 17:03:59

    有些 where 条件会导致索引无效

    在查询中,WHERE 条件也是一个比较重要的因素,尽量少并且是合理的 where 条件是徆重要的,尽量在多个条件的时候,把会提取尽量少数据量的条件放在前 面,减少后一个 where 条件的查询时间。

  • 2018-11-26 17:05:47

    sql查询调优之where条件排序字段以及limit使用索引的奥秘

    看起来匪夷所思,其实搞清楚mysql查询的原理之后,其实很简单 我们来看这2条sql查询,都用到了where order by limit 当有limit存在时,查询的顺序就有可能发生变化,这时并不是从数据库中先通过where过滤再排序再limit 因为如果这样的话,从500万数据中通过where过滤就不会是5s了。

  • 2018-11-26 21:46:28

    TextView设置行间距、行高,以及字间距

    Android系统中TextView有默认行间距,但是比较窄有的时候需要我们设置每行行间距。 TextView为我们提供了相关设置属性android:lineSpacingExtra或android:lineSpacingMultiplier。

  • 2018-11-26 21:47:55

    Drawable一个有趣的属性:tileMode

    tileMode是drawable 资源文件 bitmap的一个属性, 翻译的意思是平铺模式。用法如下: 在drawable目录下新建一个资源文件 tile_mode_demo.xml

  • 2018-11-28 09:55:53

    android radiogroup样式(设置切换背景与文字颜色)

    RadioButton(单选按钮)在Android开发中应用的非常广泛,比如一些选择项的时候,会用到单选按钮。它是一种单选框双状态的按钮,可以选择或不选择。在RadioButton没有被选中时,用户能够按下或点击来选中它。