Skip to content

Instantly share code, notes, and snippets.

@deedubs
Created March 15, 2012 02:38
Show Gist options
  • Save deedubs/2041394 to your computer and use it in GitHub Desktop.
Save deedubs/2041394 to your computer and use it in GitHub Desktop.
js3-mode . tabs
function compileStylus(str, path) {
return stylus(str)
.set('filename', path)
.set('compress', true)
.use(nib());
}
// Another example of issue
if(process.env.S3_KEY) {
app.s3Client = new knox.createClient({
key: process.env.S3_KEY
, secret: process.env.S3_SECRET
, bucket: process.env.S3_BUCKET
});
}
function compileStylus(str, path) {
return stylus(str)
.set('filename', path)
.set('compress', true)
.use(nib());
}
// Another example of issue
if(process.env.S3_KEY) {
app.s3Client = new knox.createClient({
key: process.env.S3_KEY
, secret: process.env.S3_SECRET
, bucket: process.env.S3_BUCKET
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment