Created
May 12, 2017 21:03
-
-
Save GianlucaGuarini/34a42054e3cb033ec615201527c40a34 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
{ | |
"name": "test", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"dependencies": { | |
"riot": "^3.4.2" | |
}, | |
"devDependencies": { | |
"coffee-script": "^1.12.5", | |
"pug": "^2.0.0-rc.1", | |
"stylus": "^0.54.5" | |
}, | |
"scripts": { | |
"start": "riot --template pug --type coffee --style stylus test.tag test.js" | |
}, | |
"author": "Gianluca Guarini <[email protected]> (http://gianlucaguarini.com)", | |
"license": "MIT" | |
} |
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
home | |
h1 some title here | |
p hello world | |
script(type="coffee"). | |
# your coffee script here | |
console.log "Starting a Riot!" | |
style. | |
/* your css here */ | |
.project{ | |
background-color: #000; | |
} | |
style(type="stylus") | |
// your stylus here |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think
style(type="stylus")
should bestyle(type="stylus").
(note trailing dot).