Skip to content

Commit d52e36a

Browse files
author
Stephen Gregory
committed
Specify coffee-script in package.json
1 parent 90aad29 commit d52e36a

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

gulpfile.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,7 @@ gulp.task("jscs", function () {
3838
});
3939

4040
gulp.task("coffeelint", function () {
41-
var coffeeScript = request("https://github.com/jashkenas/coffeescript/tarball/1.9.1")
42-
.pipe(source("*.tar.gz"))
43-
.pipe(gunzip())
44-
.pipe(untar())
41+
var coffeeScript = gulp.src("./node_modules/coffee-script")
4542
.pipe(gulpFilter(["**/extras/coffee-script.js"]))
4643
.pipe(rename("coffee-script-1.9.1.js"));
4744

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
],
3232
"dependencies": {
3333
"coffeelint": "^1.9.1",
34+
"coffee-script": "https://github.com/jashkenas/coffeescript/tarball/1.9.1",
3435
"eslint": "https://github.com/eslint/eslint/tarball/v1.0.0-rc-3",
3536
"gulp": "^3.9.0",
3637
"htmlhint": "^0.9.7",

0 commit comments

Comments
 (0)