Skip to content

Commit

Permalink
Updated 6to5 for better transpiling, updated turtle.io for a sign…
Browse files Browse the repository at this point in the history
…ificant change 'under the hood'
  • Loading branch information
avoidwork committed Feb 13, 2015
1 parent 0d72983 commit d389dc1
Show file tree
Hide file tree
Showing 6 changed files with 981 additions and 980 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 1.2.1
- Updated `6to5` for better transpiling
- Updated `turtle.io` for a significant change 'under the hood'

## 1.2.0
- Refactored to ES6, transpiled to ES5 with `6to5`

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ This is a sample configuration for Tensō, without authentication or SSL. This w
"level": "debug",
"stdout": true,
"dtrace": true,
"syslog": true
"stack": true
},
"port": 8000, /* Optional, default is 8000 */
"routes": require( "./routes.js" ), /* Required! */
Expand Down Expand Up @@ -309,7 +309,7 @@ A 'max byte' limit can be enforced on all routes that handle `PATCH`, `POST`, &
```

## Logging
Standard log levels are supported, and are emitted (by configuration) to `stdout` & `stderr`, & `syslog`.
Standard log levels are supported, and are emitted (by configuration) to `stdout` & `stderr`. Stack traces can be enabled.

## DTrace
DTrace probes can be enabled by configuration (disabled by default). A shell script is available at `./dtrace.sh` to observe the probes.
Expand Down
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"json": 2,
"logs": {
"dtrace": false,
"syslog": false
"stack": false
},
"security": {
"key": "x-csrf-token",
Expand Down
4 changes: 2 additions & 2 deletions lib/tenso.es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
* @license BSD-3 <https://raw.github.com/avoidwork/tenso/master/LICENSE>
* @link http://avoidwork.github.io/tenso
* @module tenso
* @version 1.2.0
* @version 1.2.1
*/
const CONFIG = require( __dirname + "/../config.json" );
const VERSION = "1.2.0";
const VERSION = "1.2.1";
const SERVER = "tenso/" + VERSION;

let keigai = require( "keigai" ),
Expand Down
Loading

0 comments on commit d389dc1

Please sign in to comment.