Skip to content

Commit

Permalink
v1.17.0. Improvement
Browse files Browse the repository at this point in the history
- v1.17.0 March 27, 2013
	- Killed explicit browser support, use
[Browserify](http://browserify.org/) instead
	- Removed the `out` directory from git
	- Now compiled with the coffee-script bare option
  • Loading branch information
balupton committed Mar 27, 2013
1 parent 34be31b commit 109d678
Show file tree
Hide file tree
Showing 31 changed files with 53 additions and 4,589 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Expand Up @@ -12,4 +12,6 @@ logs
results

node_modules
npm-debug.log
npm-debug.log

out/
3 changes: 2 additions & 1 deletion .npmignore
Expand Up @@ -4,4 +4,5 @@ Makefile
History.md

src/
out/test/
out/test/
test/
4 changes: 1 addition & 3 deletions .travis.yml
@@ -1,10 +1,8 @@
language: node_js
install: "npm install"
before_script: "./node_modules/.bin/cake test-prepare"
script: "./node_modules/.bin/cake test"
script: "npm test"
node_js:
- "0.4"
- "0.6"
- "0.8"
- "0.10"
notifications:
Expand Down
4 changes: 2 additions & 2 deletions Cakefile
Expand Up @@ -49,11 +49,11 @@ clean = (opts,next) ->

compile = (opts,next) ->
(next = opts; opts = {}) unless next?
spawn(COFFEE, ['-co', OUT, SRC], {stdio:'inherit',cwd:APP}).on('exit',next)
spawn(COFFEE, ['-bco', OUT, SRC], {stdio:'inherit',cwd:APP}).on('exit',next)

watch = (opts,next) ->
(next = opts; opts = {}) unless next?
spawn(COFFEE, ['-wco', OUT, SRC], {stdio:'inherit',cwd:APP}).on('exit',next)
spawn(COFFEE, ['-bwco', OUT, SRC], {stdio:'inherit',cwd:APP}).on('exit',next)

install = (opts,next) ->
(next = opts; opts = {}) unless next?
Expand Down
5 changes: 5 additions & 0 deletions History.md
@@ -1,5 +1,10 @@
## History

- v1.16.14 March 27, 2013
- Killed explicit browser support, use [Browserify](http://browserify.org/) instead
- Removed the `out` directory from git
- Now compiled with the coffee-script bare option

- v1.16.13 March 23, 2013
- `balUtilEvents` changes:
- `EventEmitterEnhanced` changes:
Expand Down
23 changes: 11 additions & 12 deletions README.md
@@ -1,23 +1,22 @@
# Balupton's Utility Functions [![Build Status](https://secure.travis-ci.org/balupton/bal-util.png?branch=master)](http://travis-ci.org/balupton/bal-util)
This project nutures plenty of JavaScript and Node.js utility functions used and maintained by Benjamin Lupton
Common utility functions for Node.js used and maintained by Benjamin Lupton


## What it provides
Look at its source code. It's reasonbly documented, and there's lots of tests!
## Install

### Backend

## Installing

### Node
1. [Install Node.js](http://bevry.me/node/install)
2. Install it: `npm install bal-util`
2. `npm install --save bal-util`

### Frontend

1. [See Browserify](http://browserify.org/)

### Browser
Include the scripts as you would normally.


## Using
Best off looking at the tests, or reading the inline comments. [However, if you like wiki documentation, feel free to write it here!](https://github.com/balupton/bal-util/wiki)
## Usage
Best off looking at source, it's well documented, and there are plenty of tests


## History
Expand All @@ -26,4 +25,4 @@ You can discover the history inside the [History.md](https://github.com/balupton

## License
Licensed under the incredibly [permissive](http://en.wikipedia.org/wiki/Permissive_free_software_licence) [MIT License](http://creativecommons.org/licenses/MIT/)
<br/>Copyright &copy; 2011+ [Benjamin Arthur Lupton](http://balupton.com)
<br/>Copyright © 2011+ [Benjamin Arthur Lupton](http://balupton.com)
35 changes: 0 additions & 35 deletions out/lib/balutil.js

This file was deleted.

144 changes: 0 additions & 144 deletions out/lib/compare.js

This file was deleted.

0 comments on commit 109d678

Please sign in to comment.