mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
25 lines
755 B
JavaScript
Executable file
25 lines
755 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
|
|
try {
|
|
new Function('var {a} = {a: 1}')();
|
|
} catch (error) {
|
|
console.error('Your JavaScript runtime does not support some features used by the cake command. Please use Node 6 or later.');
|
|
process.exit(1);
|
|
}
|
|
|
|
var path = require('path');
|
|
var fs = require('fs');
|
|
|
|
var potentialPaths = [
|
|
path.join(process.cwd(), 'node_modules/coffeescript/lib/coffeescript'),
|
|
path.join(process.cwd(), 'node_modules/coffeescript/lib/coffee-script'),
|
|
path.join(process.cwd(), 'node_modules/coffee-script/lib/coffee-script'),
|
|
path.join(__dirname, '../lib/coffeescript')
|
|
];
|
|
|
|
for (var i = 0, len = potentialPaths.length; i < len; i++) {
|
|
if (fs.existsSync(potentialPaths[i])) {
|
|
require(potentialPaths[i] + '/cake').run();
|
|
break;
|
|
}
|
|
}
|