Results 14 comments of 管斌瑞

这里有个关于解决 overscroll 更好的方案: http://apdevblog.com/optimizing-webkit-overflow-scrolling/

I have encounter same problem when using [vue-property-decorator](https://github.com/kaorun343/vue-property-decorator). could anyone give a hand to resolve the conflicts and merge the request?

this plugin use [dart-sass](https://github.com/sass/dart-sass) as default sass compiler and `--quiet` flag/option not supported by it. try [node-sass](https://github.com/sass/node-sass) with [runtime](https://github.com/differui/rollup-plugin-sass#runtime) option :)

Hi @jackblackCH: As comment from https://github.com/sass/node-sass/issues/2265#issuecomment-370198733. `--quiet` flag/option only for CLI.

I thought nobody need this feature so source map was omitted. Fix later... feel free to rise a PR.

Use the `output: callback` option and generate a hash name from the callback parameters?

@babyisun 试试在 `rollup.config.js` 的 `options.input` 指向的入口文件导入 `src/theme.scss`: ```js // src/index.js import style from 'src/theme.scss' ``` ```scss // src/theme.scss .text { color: $Text; // 使用前置变量 } ``` ```js // rollup.config.js import...

Hi @mwerezi , I think `--watch` flag only helps recompile automatically. so u have to refresh browser manually. Maybe u need live reload during development.Checkout [quick start](https://github.com/rollup/rollup/wiki/Quickstart-Tutorial) docs from rollup...

@mwerezi Oops, sorry for misunderstood. We use node-sass compile `.scss` and `.sass` in this plugin.So it's not possible that rollup can track dependency tree of stylesheets for us. `rollup-watch` looks...

@Rich-Harris It's fine to have the mechanism that plugin tells rollup dependencies information. @mwerezi I did little doc research.**node-sass** flatten dependency tree into a plain array which stored as `includedFiles...