Skip to content

Commit 4cc701a

Browse files
committed
Remove hyphen in coffee-script
1 parent d2e94c6 commit 4cc701a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+129
-129
lines changed

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
* Before sending a pull request for a feature, be sure to have [tests](https://github.com/jashkenas/coffeescript/tree/master/test).
66

7-
* Use the same coding style as the rest of the [codebase](https://github.com/jashkenas/coffeescript/tree/master/src). If you're just getting started with CoffeeScript, there's a nice [style guide](https://github.com/polarmobile/coffeescript-style-guide).
7+
* Use the same coding style as the rest of the [codebase](https://github.com/jashkenas/coffeescript/tree/master/src). If youre just getting started with CoffeeScript, theres a nice [style guide](https://github.com/polarmobile/coffeescript-style-guide).
88

9-
* In your pull request, do not add documentation to `index.html` or re-build the minified `coffee-script.js` file. We'll do those things before cutting a new release.
9+
* In your pull request, do not add documentation to `index.html` or re-build the minified `coffeescript.js` file. Well do those things before cutting a new release.

Cakefile

+17-17
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ fs = require 'fs'
22
path = require 'path'
33
_ = require 'underscore'
44
{ spawn, exec, execSync } = require 'child_process'
5-
CoffeeScript = require './lib/coffee-script'
6-
helpers = require './lib/coffee-script/helpers'
5+
CoffeeScript = require './lib/coffeescript'
6+
helpers = require './lib/coffeescript/helpers'
77

88
# ANSI Terminal Colors.
99
bold = red = green = reset = ''
@@ -31,7 +31,7 @@ majorVersion = parseInt CoffeeScript.VERSION.split('.')[0], 10
3131
build = (cb) ->
3232
files = fs.readdirSync 'src'
3333
files = ('src/' + file for file in files when file.match(/\.(lit)?coffee$/))
34-
run ['-c', '-o', 'lib/coffee-script'].concat(files), cb
34+
run ['-c', '-o', 'lib/coffeescript'].concat(files), cb
3535

3636
# Run a CoffeeScript through our node/coffee interpreter.
3737
run = (args, cb) ->
@@ -49,9 +49,9 @@ option '-p', '--prefix [DIR]', 'set the installation prefix for `cake install`'
4949

5050
task 'install', 'install CoffeeScript into /usr/local (or --prefix)', (options) ->
5151
base = options.prefix or '/usr/local'
52-
lib = "#{base}/lib/coffee-script"
52+
lib = "#{base}/lib/coffeescript"
5353
bin = "#{base}/bin"
54-
node = "~/.node_libraries/coffee-script"
54+
node = "~/.node_libraries/coffeescript"
5555
console.log "Installing CoffeeScript to #{lib}"
5656
console.log "Linking to #{node}"
5757
console.log "Linking 'coffee' to #{bin}/coffee"
@@ -61,7 +61,7 @@ task 'install', 'install CoffeeScript into /usr/local (or --prefix)', (options)
6161
"ln -sfn #{lib}/bin/coffee #{bin}/coffee"
6262
"ln -sfn #{lib}/bin/cake #{bin}/cake"
6363
"mkdir -p ~/.node_libraries"
64-
"ln -sfn #{lib}/lib/coffee-script #{node}"
64+
"ln -sfn #{lib}/lib/coffeescript #{node}"
6565
].join(' && '), (err, stdout, stderr) ->
6666
if err then console.log stderr.trim() else log 'done', green
6767
)
@@ -72,7 +72,7 @@ task 'build', 'build the CoffeeScript language from source', build
7272
task 'build:full', 'rebuild the source twice, and run the tests', ->
7373
build ->
7474
build ->
75-
csPath = './lib/coffee-script'
75+
csPath = './lib/coffeescript'
7676
csDir = path.dirname require.resolve csPath
7777

7878
for mod of require.cache when csDir is mod[0 ... csDir.length]
@@ -85,15 +85,15 @@ task 'build:full', 'rebuild the source twice, and run the tests', ->
8585
task 'build:parser', 'rebuild the Jison parser (run build first)', ->
8686
helpers.extend global, require 'util'
8787
require 'jison'
88-
parser = require('./lib/coffee-script/grammar').parser.generate()
88+
parser = require('./lib/coffeescript/grammar').parser.generate()
8989
# Patch Jison’s output, until https://github.com/zaach/jison/pull/339 is accepted,
9090
# to ensure that require('fs') is only called where it exists.
9191
parser = parser.replace "var source = require('fs')", """
9292
var source = '';
9393
var fs = require('fs');
9494
if (typeof fs !== 'undefined' && fs !== null)
9595
source = fs"""
96-
fs.writeFileSync 'lib/coffee-script/parser.js', parser
96+
fs.writeFileSync 'lib/coffeescript/parser.js', parser
9797

9898

9999
task 'build:browser', 'rebuild the merged script for inclusion in the browser', ->
@@ -110,11 +110,11 @@ task 'build:browser', 'rebuild the merged script for inclusion in the browser',
110110
return module.exports;
111111
})();
112112
"""
113-
for name in ['helpers', 'rewriter', 'lexer', 'parser', 'scope', 'nodes', 'sourcemap', 'coffee-script', 'browser']
113+
for name in ['helpers', 'rewriter', 'lexer', 'parser', 'scope', 'nodes', 'sourcemap', 'coffeescript', 'browser']
114114
code += """
115115
require['./#{name}'] = (function() {
116116
var exports = {}, module = {exports: exports};
117-
#{fs.readFileSync "lib/coffee-script/#{name}.js"}
117+
#{fs.readFileSync "lib/coffeescript/#{name}.js"}
118118
return module.exports;
119119
})();
120120
"""
@@ -123,7 +123,7 @@ task 'build:browser', 'rebuild the merged script for inclusion in the browser',
123123
var CoffeeScript = function() {
124124
function require(path){ return require[path]; }
125125
#{code}
126-
return require['./coffee-script'];
126+
return require['./coffeescript'];
127127
}();
128128
129129
if (typeof define === 'function' && define.amd) {
@@ -141,7 +141,7 @@ task 'build:browser', 'rebuild the merged script for inclusion in the browser',
141141
]
142142
outputFolder = "docs/v#{majorVersion}/browser-compiler"
143143
fs.mkdirSync outputFolder unless fs.existsSync outputFolder
144-
fs.writeFileSync "#{outputFolder}/coffee-script.js", header + '\n' + code
144+
fs.writeFileSync "#{outputFolder}/coffeescript.js", header + '\n' + code
145145
console.log "built ... running browser tests:"
146146
invoke 'test:browser'
147147

@@ -272,8 +272,8 @@ task 'doc:source', 'rebuild the annotated source documentation', ->
272272

273273

274274
task 'bench', 'quick benchmark of compilation time', ->
275-
{Rewriter} = require './lib/coffee-script/rewriter'
276-
sources = ['coffee-script', 'grammar', 'helpers', 'lexer', 'nodes', 'rewriter']
275+
{Rewriter} = require './lib/coffeescript/rewriter'
276+
sources = ['coffeescript', 'grammar', 'helpers', 'lexer', 'nodes', 'rewriter']
277277
coffee = sources.map((name) -> fs.readFileSync "src/#{name}.coffee").join '\n'
278278
litcoffee = fs.readFileSync("src/scope.litcoffee").toString()
279279
fmt = (ms) -> " #{bold}#{ " #{ms}".slice -4 }#{reset} ms"
@@ -309,7 +309,7 @@ runTests = (CoffeeScript) ->
309309

310310
# Convenience aliases.
311311
global.CoffeeScript = CoffeeScript
312-
global.Repl = require './lib/coffee-script/repl'
312+
global.Repl = require './lib/coffeescript/repl'
313313

314314
# Our test helper function for delimiting different test cases.
315315
global.test = (description, fn) ->
@@ -365,7 +365,7 @@ task 'test', 'run the CoffeeScript language test suite', ->
365365

366366

367367
task 'test:browser', 'run the test suite against the merged browser script', ->
368-
source = fs.readFileSync "docs/v#{majorVersion}/browser-compiler/coffee-script.js", 'utf-8'
368+
source = fs.readFileSync "docs/v#{majorVersion}/browser-compiler/coffeescript.js", 'utf-8'
369369
result = {}
370370
global.testingBrowser = yes
371371
(-> eval source).call result

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ CoffeeScript is a little language that compiles into JavaScript.
2525
If you have the node package manager, npm, installed:
2626

2727
```shell
28-
npm install -g coffee-script
28+
npm install -g coffeescript
2929
```
3030

31-
Leave off the `-g` if you don't wish to install globally. If you don't wish to use npm:
31+
Leave off the `-g` if you dont wish to install globally. If you dont wish to use npm:
3232

3333
```shell
3434
git clone https://github.com/jashkenas/coffeescript.git
@@ -53,7 +53,7 @@ For documentation, usage, and examples, see: http://coffeescript.org/
5353

5454
To suggest a feature or report a bug: http://github.com/jashkenas/coffeescript/issues
5555

56-
If you'd like to chat, drop by #coffeescript on Freenode IRC.
56+
If youd like to chat, drop by #coffeescript on Freenode IRC.
5757

5858
The source repository: https://github.com/jashkenas/coffeescript.git
5959

bin/cake

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ var path = require('path');
44
var fs = require('fs');
55
var lib = path.join(path.dirname(fs.realpathSync(__filename)), '../lib');
66

7-
require(lib + '/coffee-script/cake').run();
7+
require(lib + '/coffeescript/cake').run();

bin/coffee

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ var path = require('path');
44
var fs = require('fs');
55
var lib = path.join(path.dirname(fs.realpathSync(__filename)), '../lib');
66

7-
require(lib + '/coffee-script/command').run();
7+
require(lib + '/coffeescript/command').run();

bower.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "coffee-script",
2+
"name": "coffeescript",
33
"main": [
4-
"lib/coffee-script/coffee-script.js"
4+
"lib/coffeescript/coffeescript.js"
55
],
66
"description": "Unfancy JavaScript",
77
"keywords": [

docs/v2/annotated-source/browser.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
</a>
3131

3232

33-
<a class="source" href="coffee-script.html">
34-
coffee-script.coffee
33+
<a class="source" href="coffeescript.html">
34+
coffeescript.coffee
3535
</a>
3636

3737

@@ -123,7 +123,7 @@ <h1>browser.coffee</h1>
123123
</div>
124124

125125
<div class="content"><div class='highlight'><pre>
126-
CoffeeScript = <span class="hljs-built_in">require</span> <span class="hljs-string">'./coffee-script'</span>
126+
CoffeeScript = <span class="hljs-built_in">require</span> <span class="hljs-string">'./coffeescript'</span>
127127
CoffeeScript.<span class="hljs-built_in">require</span> = <span class="hljs-built_in">require</span>
128128
compile = CoffeeScript.compile</pre></div></div>
129129

docs/v2/annotated-source/cake.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
</a>
3131

3232

33-
<a class="source" href="coffee-script.html">
34-
coffee-script.coffee
33+
<a class="source" href="coffeescript.html">
34+
coffeescript.coffee
3535
</a>
3636

3737

@@ -141,7 +141,7 @@ <h1>cake.coffee</h1>
141141
path = <span class="hljs-built_in">require</span> <span class="hljs-string">'path'</span>
142142
helpers = <span class="hljs-built_in">require</span> <span class="hljs-string">'./helpers'</span>
143143
optparse = <span class="hljs-built_in">require</span> <span class="hljs-string">'./optparse'</span>
144-
CoffeeScript = <span class="hljs-built_in">require</span> <span class="hljs-string">'./coffee-script'</span></pre></div></div>
144+
CoffeeScript = <span class="hljs-built_in">require</span> <span class="hljs-string">'./coffeescript'</span></pre></div></div>
145145

146146
</li>
147147

docs/v2/annotated-source/coffee-script.html docs/v2/annotated-source/coffeescript.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<html>
44
<head>
5-
<title>coffee-script.coffee</title>
5+
<title>coffeescript.coffee</title>
66
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
77
<meta name="viewport" content="width=device-width, target-densitydpi=160dpi, initial-scale=1.0; maximum-scale=1.0; user-scalable=0;">
88
<link rel="stylesheet" media="all" href="docco.css" />
@@ -30,8 +30,8 @@
3030
</a>
3131

3232

33-
<a class="source" href="coffee-script.html">
34-
coffee-script.coffee
33+
<a class="source" href="coffeescript.html">
34+
coffeescript.coffee
3535
</a>
3636

3737

@@ -103,7 +103,7 @@
103103

104104
<li id="title">
105105
<div class="annotation">
106-
<h1>coffee-script.coffee</h1>
106+
<h1>coffeescript.coffee</h1>
107107
</div>
108108
</li>
109109

@@ -141,7 +141,7 @@ <h1>coffee-script.coffee</h1>
141141
<a class="pilcrow" href="#section-2">&#182;</a>
142142
</div>
143143
<p>Require <code>package.json</code>, which is two levels above this file, as this file is
144-
evaluated from <code>lib/coffee-script</code>.</p>
144+
evaluated from <code>lib/coffeescript</code>.</p>
145145

146146
</div>
147147

@@ -668,7 +668,7 @@ <h1>coffee-script.coffee</h1>
668668
<span class="hljs-keyword">for</span> ext <span class="hljs-keyword">in</span> @FILE_EXTENSIONS <span class="hljs-keyword">then</span> <span class="hljs-keyword">do</span> (ext) -&gt;
669669
<span class="hljs-built_in">require</span>.extensions[ext] ?= <span class="hljs-function">-&gt;</span>
670670
<span class="hljs-keyword">throw</span> <span class="hljs-keyword">new</span> Error <span class="hljs-string">"""
671-
Use CoffeeScript.register() or require the coffee-script/register module to require <span class="hljs-subst">#{ext}</span> files.
671+
Use CoffeeScript.register() or require the coffeescript/register module to require <span class="hljs-subst">#{ext}</span> files.
672672
"""</span>
673673

674674
exports._compileFile = <span class="hljs-function"><span class="hljs-params">(filename, sourceMap = <span class="hljs-literal">no</span>, inlineMap = <span class="hljs-literal">no</span>)</span> -&gt;</span>

docs/v2/annotated-source/command.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
</a>
3131

3232

33-
<a class="source" href="coffee-script.html">
34-
coffee-script.coffee
33+
<a class="source" href="coffeescript.html">
34+
coffeescript.coffee
3535
</a>
3636

3737

@@ -140,7 +140,7 @@ <h1>command.coffee</h1>
140140
path = <span class="hljs-built_in">require</span> <span class="hljs-string">'path'</span>
141141
helpers = <span class="hljs-built_in">require</span> <span class="hljs-string">'./helpers'</span>
142142
optparse = <span class="hljs-built_in">require</span> <span class="hljs-string">'./optparse'</span>
143-
CoffeeScript = <span class="hljs-built_in">require</span> <span class="hljs-string">'./coffee-script'</span>
143+
CoffeeScript = <span class="hljs-built_in">require</span> <span class="hljs-string">'./coffeescript'</span>
144144
{spawn, exec} = <span class="hljs-built_in">require</span> <span class="hljs-string">'child_process'</span>
145145
{EventEmitter} = <span class="hljs-built_in">require</span> <span class="hljs-string">'events'</span>
146146

@@ -214,7 +214,7 @@ <h1>command.coffee</h1>
214214
[<span class="hljs-string">'-p'</span>, <span class="hljs-string">'--print'</span>, <span class="hljs-string">'print out the compiled JavaScript'</span>]
215215
[<span class="hljs-string">'-r'</span>, <span class="hljs-string">'--require [MODULE*]'</span>, <span class="hljs-string">'require the given module before eval or REPL'</span>]
216216
[<span class="hljs-string">'-s'</span>, <span class="hljs-string">'--stdio'</span>, <span class="hljs-string">'listen for and compile scripts over stdio'</span>]
217-
[<span class="hljs-string">'-l'</span>, <span class="hljs-string">'--literate'</span>, <span class="hljs-string">'treat stdio as literate style coffee-script'</span>]
217+
[<span class="hljs-string">'-l'</span>, <span class="hljs-string">'--literate'</span>, <span class="hljs-string">'treat stdio as literate style coffeescript'</span>]
218218
[<span class="hljs-string">'-t'</span>, <span class="hljs-string">'--tokens'</span>, <span class="hljs-string">'print out the tokens that the lexer/rewriter produce'</span>]
219219
[<span class="hljs-string">'-v'</span>, <span class="hljs-string">'--version'</span>, <span class="hljs-string">'display the version number'</span>]
220220
[<span class="hljs-string">'-w'</span>, <span class="hljs-string">'--watch'</span>, <span class="hljs-string">'watch scripts for changes and rerun commands'</span>]

docs/v2/annotated-source/grammar.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
</a>
3131

3232

33-
<a class="source" href="coffee-script.html">
34-
coffee-script.coffee
33+
<a class="source" href="coffeescript.html">
34+
coffeescript.coffee
3535
</a>
3636

3737

docs/v2/annotated-source/helpers.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
</a>
3131

3232

33-
<a class="source" href="coffee-script.html">
34-
coffee-script.coffee
33+
<a class="source" href="coffeescript.html">
34+
coffeescript.coffee
3535
</a>
3636

3737

docs/v2/annotated-source/index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
</a>
3131

3232

33-
<a class="source" href="coffee-script.html">
34-
coffee-script.coffee
33+
<a class="source" href="coffeescript.html">
34+
coffeescript.coffee
3535
</a>
3636

3737

@@ -119,7 +119,7 @@ <h1>index.coffee</h1>
119119

120120
</div>
121121

122-
<div class="content"><div class='highlight'><pre>exports[key] = val <span class="hljs-keyword">for</span> key, val <span class="hljs-keyword">of</span> <span class="hljs-built_in">require</span> <span class="hljs-string">'./coffee-script'</span></pre></div></div>
122+
<div class="content"><div class='highlight'><pre>exports[key] = val <span class="hljs-keyword">for</span> key, val <span class="hljs-keyword">of</span> <span class="hljs-built_in">require</span> <span class="hljs-string">'./coffeescript'</span></pre></div></div>
123123

124124
</li>
125125

docs/v2/annotated-source/lexer.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
</a>
3131

3232

33-
<a class="source" href="coffee-script.html">
34-
coffee-script.coffee
33+
<a class="source" href="coffeescript.html">
34+
coffeescript.coffee
3535
</a>
3636

3737

@@ -122,7 +122,7 @@ <h1>lexer.coffee</h1>
122122
<pre><code>[tag, value, locationData]
123123
</code></pre><p>where locationData is {first_line, first_column, last_line, last_column}, which is a
124124
format that can be fed directly into <a href="http://github.com/zaach/jison">Jison</a>. These
125-
are read by jison in the <code>parser.lexer</code> function defined in coffee-script.coffee.</p>
125+
are read by jison in the <code>parser.lexer</code> function defined in coffeescript.coffee.</p>
126126

127127
</div>
128128

docs/v2/annotated-source/nodes.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
</a>
3131

3232

33-
<a class="source" href="coffee-script.html">
34-
coffee-script.coffee
33+
<a class="source" href="coffeescript.html">
34+
coffeescript.coffee
3535
</a>
3636

3737

docs/v2/annotated-source/optparse.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
</a>
3131

3232

33-
<a class="source" href="coffee-script.html">
34-
coffee-script.coffee
33+
<a class="source" href="coffeescript.html">
34+
coffeescript.coffee
3535
</a>
3636

3737

0 commit comments

Comments
 (0)