-
-
Save blackfalcon/9471953ace51c4ef36a6d1f40de64cfe to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cool> | |
<p>Hi { message() }</p> | |
<script> | |
message() { | |
return 'there' | |
} | |
</script> | |
<style type="postcss" scoped> | |
:scope { | |
p { | |
transform: translate3d(0, 0, 0); | |
} | |
} | |
</style> | |
</cool> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const gulp = require('gulp'), | |
browserify = require('browserify'), | |
riotify = require('riotify'), | |
riot = require('riot'), | |
sass = require('node-sass'), | |
postcss = require('postcss'), | |
prefixer = postcss([require('autoprefixer')]), | |
source = require('vinyl-source-stream') | |
// create a new custom riot css parser | |
riot.parsers.css.postcss = function(tagName, css, opts, url) { | |
var res = sass.renderSync({ data: css }) | |
return prefixer.process(res.css.toString()).css | |
} | |
gulp.task('default', function() { | |
browserify({ entries: ['index.js'] }) | |
.transform(riotify) // pass options if you need | |
.bundle() | |
.pipe(source('index.out.js')) | |
.pipe(gulp.dest('./')) | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require('./cool.tag') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "postcss-test", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"author": "Gianluca Guarini <[email protected]> (http://gianlucaguarini.com)", | |
"license": "MIT", | |
"devDependencies": { | |
"autoprefixer": "^6.5.0", | |
"browserify": "^13.1.0", | |
"gulp": "^3.9.1", | |
"node-sass": "^3.10.1", | |
"postcss": "^5.2.4", | |
"riotify": "^1.0.1", | |
"sass": "^0.5.0", | |
"vinyl-source-stream": "^1.1.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment