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

fix(config): allow CoffeeScript 1.7 to be used #473

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
// Coffee is required here to enable config files written in coffee-script.
// It's not directly used in this file, and not required.
try {
require('coffee-script');
require('coffee-script').register();
} catch (e) {
// Intentinally blank - ignore if coffee-script is not available.
// Intentionally blank - ignore if coffee-script is not available.
}

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