-
Notifications
You must be signed in to change notification settings - Fork 30
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
162 additions
and
1,398 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 install | ||
greenkeeper-lockfile-upload |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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/help | ||
=========== | ||
@anycli/plugin-help | ||
=================== | ||
|
||
standard help for anycli | ||
|
||
[![Version](https://img.shields.io/npm/v/@anycli/help.svg)](https://npmjs.org/package/@anycli/help) | ||
[![CircleCI](https://circleci.com/gh/anycli/help/tree/master.svg?style=svg)](https://circleci.com/gh/anycli/help/tree/master) | ||
[![Appveyor CI](https://ci.appveyor.com/api/projects/status/github/anycli/help?branch=master&svg=true)](https://ci.appveyor.com/project/heroku/help/branch/master) | ||
[![Codecov](https://codecov.io/gh/anycli/help/branch/master/graph/badge.svg)](https://codecov.io/gh/anycli/help) | ||
[![Greenkeeper](https://badges.greenkeeper.io/anycli/help.svg)](https://greenkeeper.io/) | ||
[![Known Vulnerabilities](https://snyk.io/test/npm/@anycli/help/badge.svg)](https://snyk.io/test/npm/@anycli/help) | ||
[![Downloads/week](https://img.shields.io/npm/dw/@anycli/help.svg)](https://npmjs.org/package/@anycli/help) | ||
[![License](https://img.shields.io/npm/l/@anycli/help.svg)](https://github.com/anycli/help/blob/master/package.json) | ||
[![Version](https://img.shields.io/npm/v/@anycli/plugin-help.svg)](https://npmjs.org/package/@anycli/plugin-help) | ||
[![CircleCI](https://circleci.com/gh/anycli/plugin-help/tree/master.svg?style=svg)](https://circleci.com/gh/anycli/plugin-help/tree/master) | ||
[![Appveyor CI](https://ci.appveyor.com/api/projects/status/github/anycli/plugin-help?branch=master&svg=true)](https://ci.appveyor.com/project/heroku/plugin-help/branch/master) | ||
[![Codecov](https://codecov.io/gh/anycli/plugin-help/branch/master/graph/badge.svg)](https://codecov.io/gh/anycli/plugin-help) | ||
[![Greenkeeper](https://badges.greenkeeper.io/anycli/plugin-help.svg)](https://greenkeeper.io/) | ||
[![Known Vulnerabilities](https://snyk.io/test/npm/@anycli/plugin-help/badge.svg)](https://snyk.io/test/npm/@anycli/plugin-help) | ||
[![Downloads/week](https://img.shields.io/npm/dw/@anycli/plugin-help.svg)](https://npmjs.org/package/@anycli/plugin-help) | ||
[![License](https://img.shields.io/npm/l/@anycli/plugin-help.svg)](https://github.com/anycli/plugin-help/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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,3 @@ | ||
#!/usr/bin/env node | ||
|
||
const fs = require('fs') | ||
const path = require('path') | ||
const dev = fs.existsSync(path.join(__dirname, '../tsconfig.json')) | ||
|
||
if (dev) require('ts-node/register') | ||
|
||
const undefault = m => m.__esModule === true ? m.default : m | ||
undefault(require('@anycli/engine'))() | ||
require('@anycli/engine').run() |
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,3 @@ | ||
@echo off | ||
|
||
node "%~dp0\run" %* |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.