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

Commit 5dd93c2

Browse files
eddiemongejuliemr
authored andcommittedJan 31, 2014
fix(config): allow CoffeeScript 1.7 to be used
CoffeeScript now requires a register call to be made. Ref #38
1 parent 10aec0f commit 5dd93c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎lib/cli.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
// Coffee is required here to enable config files written in coffee-script.
1010
// It's not directly used in this file, and not required.
1111
try {
12-
require('coffee-script');
12+
require('coffee-script').register();
1313
} catch (e) {
14-
// Intentinally blank - ignore if coffee-script is not available.
14+
// Intentionally blank - ignore if coffee-script is not available.
1515
}
1616

1717
// LiveScript is required here to enable config files written in LiveScript.

0 commit comments

Comments
 (0)
This repository has been archived.