This repository has been archived by the owner on Oct 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
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
13 changed files
with
199 additions
and
1,187 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
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -ex | ||
|
||
PATH=/usr/local/share/.config/yarn/global/node_modules/.bin:$PATH | ||
|
||
if [[ "$CIRCLE_BRANCH" != greenkeeper/* ]]; then | ||
yarn | ||
# yarn check | ||
exit 0 | ||
fi | ||
|
||
if [[ ! -z "$GIT_EMAIL" ]] & [[ ! -z "$GIT_USERNAME" ]]; then | ||
git config --global push.default simple | ||
git config --global user.email "$GIT_EMAIL" | ||
git config --global user.name "$GIT_USERNAME" | ||
fi | ||
|
||
if [[ ! -x "$(command -v greenkeeper-lockfile-update)" ]]; then | ||
yarn global add greenkeeper-lockfile@1 | ||
fi | ||
|
||
greenkeeper-lockfile-update | ||
yarn | ||
greenkeeper-lockfile-upload |
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
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
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,3 +1,3 @@ | ||
{ | ||
"extends": "anycli" | ||
"extends": "oclif" | ||
} |
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,5 +1,6 @@ | ||
*-debug.log | ||
*-error.log | ||
.oclif.manifest.json | ||
/.nyc_output | ||
/coverage | ||
/coverage.lcov | ||
|
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,13 +1,13 @@ | ||
@anycli/screen | ||
@oclif/screen | ||
============= | ||
|
||
get stdout/stderr columns | ||
|
||
[![Version](https://img.shields.io/npm/v/@anycli/screen.svg)](https://npmjs.org/package/@anycli/screen) | ||
[![CircleCI](https://circleci.com/gh/anycli/screen/tree/master.svg?style=svg)](https://circleci.com/gh/anycli/screen/tree/master) | ||
[![Appveyor CI](https://ci.appveyor.com/api/projects/status/github/anycli/screen?branch=master&svg=true)](https://ci.appveyor.com/project/heroku/screen/branch/master) | ||
[![Codecov](https://codecov.io/gh/anycli/screen/branch/master/graph/badge.svg)](https://codecov.io/gh/anycli/screen) | ||
[![Greenkeeper](https://badges.greenkeeper.io/anycli/screen.svg)](https://greenkeeper.io/) | ||
[![Known Vulnerabilities](https://snyk.io/test/npm/@anycli/screen/badge.svg)](https://snyk.io/test/npm/@anycli/screen) | ||
[![Downloads/week](https://img.shields.io/npm/dw/@anycli/screen.svg)](https://npmjs.org/package/@anycli/screen) | ||
[![License](https://img.shields.io/npm/l/@anycli/screen.svg)](https://github.com/anycli/screen/blob/master/package.json) | ||
[![Version](https://img.shields.io/npm/v/@oclif/screen.svg)](https://npmjs.org/package/@oclif/screen) | ||
[![CircleCI](https://circleci.com/gh/oclif/screen/tree/master.svg?style=svg)](https://circleci.com/gh/oclif/screen/tree/master) | ||
[![Appveyor CI](https://ci.appveyor.com/api/projects/status/github/oclif/screen?branch=master&svg=true)](https://ci.appveyor.com/project/heroku/screen/branch/master) | ||
[![Codecov](https://codecov.io/gh/oclif/screen/branch/master/graph/badge.svg)](https://codecov.io/gh/oclif/screen) | ||
[![Greenkeeper](https://badges.greenkeeper.io/oclif/screen.svg)](https://greenkeeper.io/) | ||
[![Known Vulnerabilities](https://snyk.io/test/npm/@oclif/screen/badge.svg)](https://snyk.io/test/npm/@oclif/screen) | ||
[![Downloads/week](https://img.shields.io/npm/dw/@oclif/screen.svg)](https://npmjs.org/package/@oclif/screen) | ||
[![License](https://img.shields.io/npm/l/@oclif/screen.svg)](https://github.com/oclif/screen/blob/master/package.json) |
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
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
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,46 +1,43 @@ | ||
{ | ||
"name": "@anycli/screen", | ||
"name": "@oclif/screen", | ||
"description": "get stdout/stderr columns", | ||
"version": "0.0.3", | ||
"author": "Jeff Dickey @jdxcode", | ||
"bugs": "https://github.com/anycli/screen/issues", | ||
"bugs": "https://github.com/oclif/screen/issues", | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@commitlint/cli": "^6.0.2", | ||
"@commitlint/config-conventional": "^6.0.2", | ||
"@anycli/tslint": "^0.1.3", | ||
"@oclif/tslint": "^0.2.7", | ||
"@oclif/tslint": "^0.2.9", | ||
"@types/chai": "^4.1.2", | ||
"@types/mocha": "^2.2.47", | ||
"@types/node": "^9.4.0", | ||
"@types/mocha": "^2.2.48", | ||
"@types/node": "^9.4.5", | ||
"chai": "^4.1.2", | ||
"concurrently": "^3.5.1", | ||
"eslint": "^4.16.0", | ||
"eslint-config-anycli": "^1.2.1", | ||
"husky": "^0.14.3", | ||
"eslint-config-oclif": "^1.2.1", | ||
"mocha": "^5.0.0", | ||
"mocha-junit-reporter": "^1.17.0", | ||
"nps": "^5.7.1", | ||
"nps-utils": "^1.5.0", | ||
"ts-node": "^4.1.0", | ||
"typescript": "^2.6.2" | ||
"typescript": "^2.7.1" | ||
}, | ||
"engines": { | ||
"node": ">=8.0.0" | ||
}, | ||
"files": [ | ||
"/lib" | ||
], | ||
"homepage": "https://github.com/anycli/screen", | ||
"homepage": "https://github.com/oclif/screen", | ||
"keywords": [ | ||
"anycli" | ||
"oclif" | ||
], | ||
"license": "MIT", | ||
"main": "lib/screen.js", | ||
"repository": "anycli/screen", | ||
"repository": "oclif/screen", | ||
"scripts": { | ||
"commitmsg": "commitlint -x @commitlint/config-conventional -e $GIT_PARAMS", | ||
"precommit": "nps lint -l warn", | ||
"prepublishOnly": "nps build", | ||
"test": "nps test -l warn" | ||
"build": "rm -rf lib && tsc", | ||
"lint": "concurrently -p command \"tsc -p test --noEmit\" \"tslint -p test -t stylish\"", | ||
"posttest": "yarn run lint", | ||
"prepublishOnly": "yarn run build", | ||
"test": "mocha --forbid-only \"test/**/*.test.ts\"" | ||
}, | ||
"types": "lib/screen.d.ts" | ||
} |
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
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,3 +1,3 @@ | ||
{ | ||
"extends": "@anycli/tslint" | ||
"extends": "@oclif/tslint" | ||
} |
Oops, something went wrong.