Cheton Wu

Results 123 comments of Cheton Wu

Hi @pcfreak30, You can simply use `var browserifyCSS = require('browserify-css');` if you want to require only the browser.js. If you want to output CSS to a another file instead of...

I will put it in the backlog. Please stay tuned for further updates. Notes: https://github.com/webpack/style-loader/blob/master/addStyles.js#L235

May I know if there's anyone can help add source map support?

Hi tindli, Thank you for highlighting this issue. I will remove the `createLink` function since the v1.0 release.

Sorry for that I did make a mistake, the `_setErrors` callback is asynchronous and it will be called when the component state has actually updated. How about using an error-first...

I made a little change to the code using the error-first callback, this should fix the issue existed in this PR.

I found this line in [lib/compass.js](https://github.com/appleboy/gulp-compass/blob/master/lib/compass.js): ``` var child = spawn(compassExecutable, options, {cwd: opts.project || process.cwd()}), ``` It spawns a new child process per file, and therefore results in performance...

Hi @red2678 I'd recommend you to use `gulp-sass` and `node-bourbon` as an alternative solution. ``` javascript var gulp = require('gulp'); var bourbon = require('node-bourbon'); var sass = require('gulp-sass'); var sourcemaps...

@red2678 You could also use [gulp-spawn](https://github.com/hparra/gulp-spawn) to spawn a child process to run `compass` command with options like `--sass-dir` and `--images-dir` to include all your files/directories. An example usage for...

May I know whether we should use different approaches for TinyG and g2core? For example: **[TinyG]** Commands can be sent together in a single transmission: ``` !% ``` **[g2core]** Send...