diff --git a/index.js b/index.js index 92ccde5..876638c 100644 --- a/index.js +++ b/index.js @@ -27,6 +27,10 @@ var supportedFormats = { , extensions: ['coffee'] , aliases: ['coffee-script'] } + , 'livescript': { + require: 'LiveScript' + , extensions: ['ls'] + } , 'six': { require: 'six' } @@ -59,6 +63,7 @@ module.exports = function (formats) { // # Format supportedFormats for (var key in supportedFormats) { + console.log('key in ?: line68: ', key); var supportedFormat = supportedFormats[key]; supportedFormat.name = supportedFormat.name || key; // ## Populate .extensions diff --git a/package.json b/package.json index 66d4ba1..c8284bd 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,8 @@ "clojure", "dart", "typescript", - "ts" + "ts", + "LiveScript" ], "author": "Olivier Lalonde ", "license": "BSD", @@ -39,7 +40,8 @@ "require-xml": "", "require-ini": "", "coffee-script": "", - "six": "" + "six": "", + "LiveScript": "" }, "devDependencies": { "clojure-script": ""