Skip to content
This repository has been archived by the owner on Dec 26, 2018. It is now read-only.

Change all occurrences of "coffee-script" with "coffeescript" #191

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ These are the preprocessors supported by vueify out of the box:
- scss (via `node-sass`, use `sass` in [config section](#configuring-options))
- jade
- pug
- coffee-script (use `coffee` in [config section](#configuring-options))
- coffeescript (use `coffee` in [config section](#configuring-options))

## PostCSS

Expand Down
4 changes: 2 additions & 2 deletions lib/compilers/coffee.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
var ensureRequire = require('../ensure-require.js')

module.exports = function (raw, cb, compiler) {
ensureRequire('coffee', ['coffee-script'])
var coffee = require('coffee-script')
ensureRequire('coffee', ['coffeescript'])
var coffee = require('coffeescript')
var compiled
try {
compiled = coffee.compile(raw, compiler.options.coffee || {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"babel-runtime": "^6.0.0",
"browserify": "^13.0.1",
"chai": "^3.5.0",
"coffee-script": "^1.10.0",
"coffeescript": "^1.10.0",
"eslint": "^2.13.0",
"eslint-config-vue": "^1.0.3",
"eslint-plugin-html": "^1.5.3",
Expand Down