Skip to content

Commit 5fa0df5

Browse files
committed
feat(extraction): scaffolded separate repository
after extracting from the travi/cli repository
1 parent e37814c commit 5fa0df5

29 files changed

+8274
-12
lines changed

.babelrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"presets": [["env", {"targets": {"node": "current"}}]],
3+
"plugins": [["transform-object-rest-spread", {"useBuiltIns": true}]]
4+
}

.commitlintrc.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = {extends: ['travi']};

.editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
indent_style = space
10+
indent_size = 2
11+
end_of_line = lf
12+
insert_final_newline = true

.eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/lib/
2+
/coverage/

.eslintrc.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
extends: '@travi/travi/rules/es6'
2+

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

.github/settings.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
repository:
2+
description: !<tag:yaml.org,2002:js/undefined> ''
3+
has_wiki: false
4+
has_projects: false
5+
has_downloads: false
6+
allow_squash_merge: false
7+
allow_merge_commit: true
8+
allow_rebase_merge: true
9+
labels:
10+
- name: bug
11+
color: ee0701
12+
- name: duplicate
13+
color: cccccc
14+
- name: enhancement
15+
color: 84b6eb
16+
- name: help wanted
17+
color: 128A0C
18+
- name: invalid
19+
color: e6e6e6
20+
- name: question
21+
color: cc317c
22+
- name: wontfix
23+
color: ffffff
24+
- name: greenkeeper
25+
color: 00c775

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/node_modules/
2+
/lib/
3+
/coverage/
4+
/.nyc_output/
5+
6+
.eslintcache

.huskyrc.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"hooks": {
3+
"pre-commit": "npm test",
4+
"commit-msg": "commitlint -e"
5+
}
6+
}

.npmignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/src/
2+
/test/
3+
/coverage/
4+
/.nyc_output/
5+
6+
.editorconfig
7+
.eslintcache
8+
.eslintignore
9+
.eslintrc.yml
10+
.markdownlintrc
11+
.nvmrc
12+
.travis.yml
13+
rollup.config.js

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v9.11.1

.nycrc

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"reporter": [
3+
"lcov",
4+
"text-summary"
5+
],
6+
"exclude": [
7+
"test/"
8+
]
9+
}

.travis.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
language: node_js
2+
notifications:
3+
email: false
4+
install:
5+
- npm install
6+
- gem install travis
7+
before_script: 'npm run greenkeeper:update-lockfile'
8+
after_script: 'npm run greenkeeper:upload-lockfile'
9+
env:
10+
global:
11+
- FORCE_COLOR=1
12+
- NPM_CONFIG_COLOR=always
13+
- GK_LOCK_COMMIT_AMEND=true

LICENSE

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
MIT License
2+
3+
Copyright (c) 2018 Matt Travi
4+
5+
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:
6+
7+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8+
9+
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.
10+

README.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# project-scaffolder
2+
3+
opinionated scaffolder for new projects
4+
5+
<!-- consumer badges -->
6+
[![npm][npm-badge]][npm-link]
7+
[![MIT license][license-badge]][license-link]
8+
9+
<!-- status badges -->
10+
[![Build Status][ci-badge]][ci-link]
11+
12+
<!-- contribution badges -->
13+
[![Conventional Commits][commit-convention-badge]][commit-convention-link]
14+
[![Commitizen friendly][commitizen-badge]][commitizen-link]
15+
16+
[npm-link]: https://www.npmjs.com/package/@travi/project-scaffolder
17+
[npm-badge]: https://img.shields.io/npm/v/@travi/project-scaffolder.svg
18+
[license-link]: LICENSE
19+
[license-badge]: https://img.shields.io/github/license/travi/project-scaffolder.svg
20+
[ci-link]: https://travis-ci.org/travi/project-scaffolder
21+
[ci-badge]: https://img.shields.io/travis/travi/project-scaffolder.svg?branch=master
22+
[commit-convention-link]: https://conventionalcommits.org
23+
[commit-convention-badge]: https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg
24+
[commitizen-link]: http://commitizen.github.io/cz-cli/
25+
[commitizen-badge]: https://img.shields.io/badge/commitizen-friendly-brightgreen.svg

0 commit comments

Comments
 (0)