Skip to content

Commit

Permalink
feat(extraction): scaffolded separate repository
Browse files Browse the repository at this point in the history
after extracting from the travi/cli repository
  • Loading branch information
travi committed Apr 22, 2018
1 parent e37814c commit 5fa0df5
Show file tree
Hide file tree
Showing 29 changed files with 8,274 additions and 12 deletions.
4 changes: 4 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"presets": [["env", {"targets": {"node": "current"}}]],
"plugins": [["transform-object-rest-spread", {"useBuiltIns": true}]]
}
1 change: 1 addition & 0 deletions .commitlintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = {extends: ['travi']};
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# EditorConfig is awesome: http://EditorConfig.org

# top-most EditorConfig file
root = true

[*]
charset = utf-8
trim_trailing_whitespace = true
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/lib/
/coverage/
2 changes: 2 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
extends: '@travi/travi/rules/es6'

1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
25 changes: 25 additions & 0 deletions .github/settings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
repository:
description: !<tag:yaml.org,2002:js/undefined> ''
has_wiki: false
has_projects: false
has_downloads: false
allow_squash_merge: false
allow_merge_commit: true
allow_rebase_merge: true
labels:
- name: bug
color: ee0701
- name: duplicate
color: cccccc
- name: enhancement
color: 84b6eb
- name: help wanted
color: 128A0C
- name: invalid
color: e6e6e6
- name: question
color: cc317c
- name: wontfix
color: ffffff
- name: greenkeeper
color: 00c775
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/node_modules/
/lib/
/coverage/
/.nyc_output/

.eslintcache
6 changes: 6 additions & 0 deletions .huskyrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"hooks": {
"pre-commit": "npm test",
"commit-msg": "commitlint -e"
}
}
13 changes: 13 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/src/
/test/
/coverage/
/.nyc_output/

.editorconfig
.eslintcache
.eslintignore
.eslintrc.yml
.markdownlintrc
.nvmrc
.travis.yml
rollup.config.js
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v9.11.1
9 changes: 9 additions & 0 deletions .nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"reporter": [
"lcov",
"text-summary"
],
"exclude": [
"test/"
]
}
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
language: node_js
notifications:
email: false
install:
- npm install
- gem install travis
before_script: 'npm run greenkeeper:update-lockfile'
after_script: 'npm run greenkeeper:upload-lockfile'
env:
global:
- FORCE_COLOR=1
- NPM_CONFIG_COLOR=always
- GK_LOCK_COMMIT_AMEND=true
10 changes: 10 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
MIT License

Copyright (c) 2018 Matt Travi

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.

25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# project-scaffolder

opinionated scaffolder for new projects

<!-- consumer badges -->
[![npm][npm-badge]][npm-link]
[![MIT license][license-badge]][license-link]

<!-- status badges -->
[![Build Status][ci-badge]][ci-link]

<!-- contribution badges -->
[![Conventional Commits][commit-convention-badge]][commit-convention-link]
[![Commitizen friendly][commitizen-badge]][commitizen-link]

[npm-link]: https://www.npmjs.com/package/@travi/project-scaffolder
[npm-badge]: https://img.shields.io/npm/v/@travi/project-scaffolder.svg
[license-link]: LICENSE
[license-badge]: https://img.shields.io/github/license/travi/project-scaffolder.svg
[ci-link]: https://travis-ci.org/travi/project-scaffolder
[ci-badge]: https://img.shields.io/travis/travi/project-scaffolder.svg?branch=master
[commit-convention-link]: https://conventionalcommits.org
[commit-convention-badge]: https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg
[commitizen-link]: http://commitizen.github.io/cz-cli/
[commitizen-badge]: https://img.shields.io/badge/commitizen-friendly-brightgreen.svg
Loading

0 comments on commit 5fa0df5

Please sign in to comment.