bump strip-ansi

This commit is contained in:
Sindre Sorhus 2014-03-26 16:29:42 +01:00
parent d992309621
commit af4983c011
6 changed files with 10 additions and 1622 deletions

View file

@ -8,5 +8,9 @@ charset = utf-8
trim_trailing_whitespace = true trim_trailing_whitespace = true
insert_final_newline = true insert_final_newline = true
[package.json]
indent_style = space
indent_size = 2
[*.md] [*.md]
trim_trailing_whitespace = false trim_trailing_whitespace = false

2
.gitattributes vendored
View file

@ -1 +1 @@
* text=auto * text eol=lf

View file

@ -1,4 +1,3 @@
language: node_js language: node_js
node_js: node_js:
- '0.10' - '0.10'
- '0.8'

1614
logo.ai

File diff suppressed because one or more lines are too long

View file

@ -10,7 +10,7 @@
"url": "http://sindresorhus.com" "url": "http://sindresorhus.com"
}, },
"engines": { "engines": {
"node": ">=0.8.0" "node": ">=0.10.0"
}, },
"scripts": { "scripts": {
"test": "mocha" "test": "mocha"
@ -40,11 +40,11 @@
"text" "text"
], ],
"dependencies": { "dependencies": {
"has-color": "~0.1.0", "ansi-styles": "^1.0.0",
"ansi-styles": "~1.0.0", "has-color": "^0.1.0",
"strip-ansi": "~0.1.0" "strip-ansi": "^0.2.0"
}, },
"devDependencies": { "devDependencies": {
"mocha": "~1.x" "mocha": "*"
} }
} }

View file

@ -1,4 +1,3 @@
/*global describe, it */
'use strict'; 'use strict';
var assert = require('assert'); var assert = require('assert');
var chalk = require('./index'); var chalk = require('./index');