Skip to content

Commit

Permalink
Merge pull request #79 from frasdav/npm-coffeescript-move
Browse files Browse the repository at this point in the history
Change Coffeescript dependency name
  • Loading branch information
contra authored Nov 30, 2017
2 parents 39ad603 + 1a87729 commit 20fc6f5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ gulp.task('coffee', function() {

## Options

- `coffee` (optional): A reference to a custom CoffeeScript version/fork (eg. `coffee: require('my-name/coffee-script')`)
- `coffee` (optional): A reference to a custom CoffeeScript version/fork (eg. `coffee: require('my-name/coffeescript')`)

Additionally, the options object supports all options that are supported by the standard CoffeeScript compiler.

Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = function (opt) {

var options = merge({
bare: false,
coffee: require('coffee-script'),
coffee: require('coffeescript'),
header: false,
sourceMap: !!file.sourceMap,
sourceRoot: false,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"gulpplugin"
],
"dependencies": {
"coffee-script": "^1.10.0",
"coffeescript": "^1.10.0",
"gulp-util": "^3.0.2",
"merge": "^1.2.0",
"through2": "^2.0.1",
Expand Down
2 changes: 1 addition & 1 deletion test/main.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var coffee = require('../');
var should = require('should');
var coffeescript = require('coffee-script');
var coffeescript = require('coffeescript');
var gutil = require('gulp-util');
var fs = require('fs');
var path = require('path');
Expand Down

0 comments on commit 20fc6f5

Please sign in to comment.