Skip to content

Commit

Permalink
feat(card): versão inicial
Browse files Browse the repository at this point in the history
  • Loading branch information
americoneto1 committed Oct 25, 2020
0 parents commit d63676d
Show file tree
Hide file tree
Showing 7 changed files with 8,610 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: pipeline

on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
build:
if: "! contains(toJSON(github.event.commits.*.message), '[skip-ci]')"
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "12.x"
- name: Install
run: npm ci
- name: Release 🚀
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run semantic-release
76 changes: 76 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# parcel-bundler cache (https://parceljs.org/)
.cache

# next.js build output
.next

# nuxt.js build output
.nuxt

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless

# FuseBox cache
.fusebox/
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2018 John Papa

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Americo Neto's Card

Desenvolvedor web no Itaú Unibanco, pai, santista e coorganizador da comunidade AngularSP.

[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/americoneto1/card/blob/master/LICENSE)
[![npm version](https://badge.fury.io/js/%40americoneto%2Fcard.svg)](https://www.npmjs.com/package/@americoneto/card)

## Uso

Via npx:

```bash
npx @americoneto/card
```

## Credits

Forked from Tierney Cyren's https://github.com/bnb/bitandbang

Badges from <https://badge.fury.io/for/js>
60 changes: 60 additions & 0 deletions bin/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
#!/usr/bin/env node
// 👆 Used to tell Node.js that this is a CLI tool

// Pull in our modules
const boxen = require('boxen');
const chalk = require('chalk');

// Because we like console, and captains.log sounds cool
const captains = console;

// Define options for Boxen
const options = {
padding: 1,
margin: 1,
borderStyle: 'single',
};

// Text + chalk definitions
const data = {
name: chalk.white('Americo Neto /'),
handle: chalk.cyan('Dev'),
work: chalk.white('Desenvolvedor Web'),
twitter: chalk.cyan('https://twitter.com/americoneto1'),
github: chalk.cyan('https://github.com/americoneto1'),
linkedin: chalk.cyan('https://linkedin.com/in/americo-neto'),
npx: chalk.white('npx @americoneto/card'),
labelWork: chalk.white.bold(' Work:'),
labelTwitter: chalk.white.bold(' Twitter:'),
labelGitHub: chalk.white.bold(' GitHub:'),
labelLinkedIn: chalk.white.bold(' LinkedIn:'),
labelCard: chalk.white.bold(' Card:'),
};

// Actual strings we're going to output
const newline = '\n';
const heading = `${data.name} ${data.handle}`;
const working = `${data.labelWork} ${data.work}`;
const twittering = `${data.labelTwitter} ${data.twitter}`;
const githubing = `${data.labelGitHub} ${data.github}`;
const linkedining = `${data.labelLinkedIn} ${data.linkedin}`;
const carding = `${data.labelCard} ${data.npx}`;

// Put all our output together into a single variable so we can use boxen effectively
const output = heading
+ newline
+ newline
+ working
+ newline
+ twittering
+ newline
+ githubing
+ newline
+ linkedining
+ newline
+ newline
+ newline
+ carding;

const cardMessage = chalk.green(boxen(output, options));
captains.log(cardMessage);
Loading

0 comments on commit d63676d

Please sign in to comment.