Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
feat(config): allow LiveScript configuration files
Browse files Browse the repository at this point in the history
  • Loading branch information
czchen authored and juliemr committed Jan 31, 2014
1 parent 2601508 commit 8d29c93
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ try {
// Intentinally blank - ignore if coffee-script is not available.
}

// LiveScript is required here to enable config files written in LiveScript.
// It's not directly used in this file, and not required.
try {
require('LiveScript');
} catch (e) {
// Intentionally blank - ignore if LiveScript is not available.
}

var util = require('util');
var path = require('path');
var fs = require('fs');
Expand Down

0 comments on commit 8d29c93

Please sign in to comment.