Created
March 15, 2012 02:38
-
-
Save deedubs/2041394 to your computer and use it in GitHub Desktop.
js3-mode . tabs
This file contains hidden or 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
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 | |
}); | |
} |
This file contains hidden or 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
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