bump strip-ansi
This commit is contained in:
parent
d992309621
commit
af4983c011
6 changed files with 10 additions and 1622 deletions
|
|
@ -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
2
.gitattributes
vendored
|
|
@ -1 +1 @@
|
||||||
* text=auto
|
* text eol=lf
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
language: node_js
|
language: node_js
|
||||||
node_js:
|
node_js:
|
||||||
- '0.10'
|
- '0.10'
|
||||||
- '0.8'
|
|
||||||
|
|
|
||||||
1614
logo.ai
1614
logo.ai
File diff suppressed because one or more lines are too long
10
package.json
10
package.json
|
|
@ -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": "*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
1
test.js
1
test.js
|
|
@ -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');
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue