Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.

Commit

Permalink
added Livescript support
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter de croos committed Jul 3, 2013
1 parent 8929b2e commit 43f4249
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions index.js
Expand Up @@ -27,6 +27,10 @@ var supportedFormats = {
, extensions: ['coffee']
, aliases: ['coffee-script']
}
, 'livescript': {
require: 'LiveScript'
, extensions: ['ls']
}
, 'six': {
require: 'six'
}
Expand Down Expand Up @@ -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
Expand Down
6 changes: 4 additions & 2 deletions package.json
Expand Up @@ -27,7 +27,8 @@
"clojure",
"dart",
"typescript",
"ts"
"ts",
"LiveScript"
],
"author": "Olivier Lalonde <olalonde@gmail.com>",
"license": "BSD",
Expand All @@ -39,7 +40,8 @@
"require-xml": "",
"require-ini": "",
"coffee-script": "",
"six": ""
"six": "",
"LiveScript": ""
},
"devDependencies": {
"clojure-script": ""
Expand Down

0 comments on commit 43f4249

Please sign in to comment.