-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
327 additions
and
350 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,33 @@ | ||
--- | ||
branches: | ||
only: | ||
- master | ||
- develop | ||
- /^greenkeeper/.*$/ | ||
- /^feature/.*$/ | ||
- master | ||
- develop | ||
- "/^greenkeeper/.*$/" | ||
- "/^feature/.*$/" | ||
language: node_js | ||
node_js: | ||
- stable | ||
- 11 | ||
- 10 | ||
- 9 | ||
- 8 | ||
- stable | ||
- 11 | ||
- 10 | ||
- 9 | ||
- 8 | ||
env: | ||
global: | ||
- CC_TEST_REPORTER_ID=ba42fc27c58fe141f19793fa5acb42d4d229da491a4c7a1568ba50a69a009e1f | ||
- CC_TEST_REPORTER_ID=ba42fc27c58fe141f19793fa5acb42d4d229da491a4c7a1568ba50a69a009e1f | ||
before_install: | ||
- '[[ $(node -v) =~ ^v12.*$ ]] || npm install -g npm@latest' | ||
- npm install -g greenkeeper-lockfile | ||
- "[[ $(node -v) =~ ^v12.*$ ]] || npm install -g npm@latest" | ||
- npm install -g greenkeeper-lockfile | ||
install: npm install | ||
before_script: | ||
- greenkeeper-lockfile-update | ||
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter | ||
- chmod +x ./cc-test-reporter | ||
- ./cc-test-reporter before-build | ||
- greenkeeper-lockfile-update | ||
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 | ||
> ./cc-test-reporter | ||
- chmod +x ./cc-test-reporter | ||
- "./cc-test-reporter before-build" | ||
after_script: | ||
- greenkeeper-lockfile-upload | ||
- "[ $TRAVIS_NODE_VERSION = stable ] | ||
&& nyc report --reporter=lcov | ||
&& ./cc-test-reporter after-build --debug -t lcov --exit-code $TRAVIS_TEST_RESULT | ||
|| echo 'Coverage skipped'" | ||
- greenkeeper-lockfile-upload | ||
- "[ $TRAVIS_NODE_VERSION = stable ] && nyc report --reporter=lcov && ./cc-test-reporter | ||
after-build --debug -t lcov --exit-code $TRAVIS_TEST_RESULT || echo 'Coverage skipped'" | ||
notifications: | ||
slack: | ||
secure: b30+M8/fYAvUaYwnjMRVgpf63V84HkaMHO6j/RSE8vCyPLF0kxJYlc1lsemGfR1czvEUxNz+IIvDhbdLdkeF7Fpdq2gLBa4MTEpBuzKGtwqC9Tup3u0hg1haNd0oGmMSextH4e2wvdaFXK+rIYebAYhNoP5qeW6OqtyqNVblL7I= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ var _split = _interopDefault(require('lodash/split')); | |
var _forEach = _interopDefault(require('lodash/forEach')); | ||
|
||
const name = "truwrap"; | ||
const version = "1.0.4"; | ||
const version = "1.0.5"; | ||
const description = "Smarter terminal text wrapping (handles 24bit color)"; | ||
const author = "Mark Griffiths <[email protected]> (http://thebespokepixel.com/)"; | ||
const main = "index.js"; | ||
|
@@ -60,7 +60,7 @@ const devDependencies = { | |
"@babel/preset-env": "^7.5.5", | ||
ava: "^2.2.0", | ||
"babel-plugin-lodash": "^3.3.4", | ||
"documentation-theme-bespoke": "^0.5.6", | ||
"documentation-theme-bespoke": "^1.0.0", | ||
gulp: "^4.0.2", | ||
"gulp-better-rollup": "^4.0.1", | ||
"gulp-chmod": "^3.0.0", | ||
|
@@ -88,7 +88,7 @@ const dependencies = { | |
"os-locale": "^4.0.0", | ||
"read-pkg-up": "^6.0.0", | ||
"term-ng": "^1.0.4", | ||
trucolor: "^1.0.3", | ||
trucolor: "^1.0.6", | ||
"update-notifier": "^3.0.1", | ||
verbosity: "^1.1.2", | ||
yargs: "^13.3.0" | ||
|
@@ -138,25 +138,34 @@ const badges = { | |
} | ||
}, | ||
readme: { | ||
Status: [ | ||
"Publishing Status": [ | ||
[ | ||
"npm", | ||
"travis", | ||
"david" | ||
], | ||
[ | ||
"code-climate", | ||
"code-climate-coverage", | ||
"snyk" | ||
"travis-com", | ||
"rollup" | ||
] | ||
], | ||
Developer: [ | ||
"greenkeeper", | ||
"david-dev", | ||
"rollup" | ||
"Development Status": [ | ||
[ | ||
"greenkeeper", | ||
"travis-com-dev" | ||
], | ||
[ | ||
"david-dev", | ||
"david-devdeps-dev" | ||
], | ||
[ | ||
"snyk", | ||
"code-climate", | ||
"code-climate-coverage" | ||
] | ||
], | ||
Help: [ | ||
"inch" | ||
"Documentation/Help": [ | ||
"inch", | ||
"twitter" | ||
] | ||
}, | ||
docs: [ | ||
|
@@ -169,6 +178,7 @@ const badges = { | |
"code-climate-coverage" | ||
], | ||
[ | ||
"snyk", | ||
"david" | ||
] | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.