Add CoffeeScript and TypeScript commands to AssetConverter.

This commit is contained in:
resurtm
2013-10-31 17:55:44 +06:00
parent 0ee120f5f9
commit 2f360e53c3

View File

@ -28,6 +28,8 @@ class AssetConverter extends Component implements AssetConverterInterface
'scss' => ['css', 'sass {from} {to}'],
'sass' => ['css', 'sass {from} {to}'],
'styl' => ['js', 'stylus < {from} > {to}'],
'coffee' => ['js', 'coffee -p {from} > {to}'],
'ts' => ['js', 'tsc --out {to} {from}'],
];
/**