Skip to content

Commit 9f67f4f

Browse files
committed
Remove kits/, use grunt.
1 parent 48fdc32 commit 9f67f4f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

readme.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ The following should be considered 1) incomplete, and 2) *REQUIRED READING*. I d
5656

5757
### Build & Deployment Process
5858

59-
Projects should always attempt to include some generic means by which source can be compressed in preparation for production use. Some popular and proven tools include the JavaScript-based [Uglify.js](https://github.com/mishoo/UglifyJS), as well as the Java-based [Google Closure Compiler](http://code.google.com/closure/compiler/) and [YUI Compressor](http://developer.yahoo.com/yui/compressor/). Choose one and support it.
59+
Projects should always attempt to include some generic means by which source can be linted, tested and compressed in preparation for production use. For this task, [grunt](https://github.com/cowboy/grunt) by Ben Alman is second to none and has officially replaced the "kits/" directory of this repo.
60+
6061

61-
You can now find a functional, generic "build kit" in the `/kits` directory of this repository. Usage is easy: 1) copy the contents of a kit found in `/kits` to a new working directory, 2) save your project .js file in the `/src` directory, 3) put the name of the project in `project.txt`, 4) run `make` from command line. (Even easier directions: replace occurrences of "foo")
6262

6363

6464
### Test Facility
@@ -202,9 +202,9 @@ Projects _must_ include some form of unit, reference, implementation or function
202202
foo = "",
203203
bar = "",
204204
quux;
205-
205+
206206
// 2.B.1.3
207-
// var statements should always be in the beginning of their respective scope (function).
207+
// var statements should always be in the beginning of their respective scope (function).
208208
// Same goes for const and let from ECMAScript 6.
209209

210210
// Bad
@@ -215,12 +215,12 @@ Projects _must_ include some form of unit, reference, implementation or function
215215
var bar = "",
216216
qux;
217217
}
218-
218+
219219
// Good
220220
function foo() {
221221
var bar = "",
222222
qux;
223-
223+
224224
// all statements after the variables declarations.
225225
}
226226
```

0 commit comments

Comments
 (0)