Skip to content

Commit

Permalink
v1.1.4. Improvement.
Browse files Browse the repository at this point in the history
- v1.1.4 March 25, 2013
	- Repackaged
  • Loading branch information
balupton committed Mar 25, 2013
1 parent 95f499e commit 29b8cae
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 16 deletions.
2 changes: 2 additions & 0 deletions .npmignore
@@ -1,5 +1,7 @@
.travis*
Cakefile
Makefile
History.md

docs/
example/
Expand Down
3 changes: 3 additions & 0 deletions History.md
@@ -1,5 +1,8 @@
## History

- v1.1.4 March 25, 2013
- Repackaged

- v1.1.3 October 18, 2012
- Updated cli-color from 0.1 to 0.2
- Make cli-color an optional dependency
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt → LICENSE.md
@@ -1,6 +1,6 @@
(The MIT License)

Copyright (c) 2012 Bevry Pty Ltd <us@bevry.me>
Copyright (c) 2012+ Bevry Pty Ltd <us@bevry.me>
Copyright (c) 2011 Benjamin Lupton <b@lupton.cc>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
Expand Down
4 changes: 2 additions & 2 deletions Makefile
@@ -1,10 +1,10 @@
# If you change something here, be sure to change it in package.json's scripts as well

dev:
./node_modules/.bin/coffee -w -o out/ -c src/
./node_modules/.bin/coffee -bw -o out/ -c src/

compile:
./node_modules/.bin/coffee -o out/ -c src/
./node_modules/.bin/coffee -bo out/ -c src/

clean:
rm -Rf lib node_modules/ npm-debug.log
Expand Down
12 changes: 7 additions & 5 deletions README.md
@@ -1,6 +1,6 @@
# Caterpillar

Caterpillar is an awesome, simple, intuitive console logger for [Node.js](http://nodejs.org/). It supports grouping of messages, filtering log levels, colors, times, modules, custom formatters and custom transports
Caterpillar is a simple but powerful intuitive console logger for [Node.js](http://nodejs.org/). It supports grouping of messages, filtering log levels, colors, times, modules, custom formatters and custom transports.


## Example
Expand All @@ -23,16 +23,18 @@ When you set the log level to level 7 (debug level), then the `ConsoleFormatter`

## Using

Please refer to the [console example](https://github.com/bevry/caterpillar/blob/master/example/console.coffee#files) for usage
Refer to the [console example](https://github.com/bevry/caterpillar/blob/master/example/console.coffee#files) for usage


## Install

1. [Install Node.js](https://github.com/balupton/node/wiki/Installing-Node.js)
1. [Install Node.js](http://bevry.me/node/install)

1. Install Caterpillar

npm install caterpillar
```
npm install caterpillar
```


## History
Expand All @@ -43,7 +45,7 @@ You can discover the history inside the [History.md](https://github.com/bevry/ca
## 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; 2012 [Bevry Pty Ltd](http://bevry.me)
<br/>Copyright &copy; 2012+ [Bevry Pty Ltd](http://bevry.me)
<br/>Copyright &copy; 2011 [Benjamin Lupton](http://balupton.com)


Expand Down
16 changes: 8 additions & 8 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "caterpillar",
"version": "1.1.3",
"description": "Caterpillar is an awesome, simple console logger for node.js. It supports grouping of messages, filtering log levels, colors, times, modules, custom formatters and custom transports. It's awesome.",
"version": "1.1.4",
"description": "Caterpillar is a simple but powerful console logger for node.js. It supports grouping of messages, filtering log levels, colors, times, modules, custom formatters and custom transports.",
"homepage": "https://github.com/bevry/caterpillar",
"keywords": [
"console",
Expand All @@ -12,10 +12,10 @@
],
"author": "Bevry Pty Ltd <us@bevry.me> (http://bevry.me)",
"maintainers": [
"Benjamin Lupton <b@lupton.cc> (http://balupton.com)"
"Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)"
],
"contributors": [
"Benjamin Lupton <b@lupton.cc> (http://balupton.com)"
"Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)"
],
"bugs": {
"url": "https://github.com/bevry/caterpillar/issues"
Expand All @@ -25,17 +25,17 @@
"url": "http://github.com/bevry/caterpillar.git"
},
"engines" : {
"node": ">=0.4.0"
"node": ">=0.4"
},
"dependencies": {},
"optionalDependencies": {
"cli-color": "0.2.x"
"cli-color": "~0.2.2"
},
"devDependencies": {
"coffee-script": "1.3.x"
"coffee-script": "~1.6.2"
},
"directories": {
"lib": "./out/lib"
},
"main": "./out/lib/caterpillar"
"main": "./out/lib/caterpillar.js"
}

0 comments on commit 29b8cae

Please sign in to comment.