chore: initial checkin

This commit is contained in:
2018-10-17 10:13:45 -07:00
commit 585f74e83c
11 changed files with 2819 additions and 0 deletions

23
.changelog_template.hbs Normal file
View File

@@ -0,0 +1,23 @@
### Changelog
{{#each releases}}
{{#if href}}
{{#if major}}
### [{{title}}]({{href}}) ({{niceDate}})
{{else}}
#### [{{title}}]({{href}}) ({{niceDate}})
{{/if}}
{{else}}
#### {{title}} ({{niceDate}})
{{/if}}
{{#each merges}}
- {{message}}{{#if href}} [`#{{id}}`]({{href}}){{/if}}
{{/each}}
{{#each fixes}}
- {{commit.subject}}{{#each fixes}}{{#if href}} [`#{{id}}`]({{href}}){{/if}}{{/each}}
{{/each}}
{{#each commits}}
- {{#matches message "BREAKING CHANGE"}}**Breaking:** {{/matches}}{{subject}}{{#if href}} [`{{shorthash}}`]({{href}}){{/if}}
{{/each}}
{{/each}}

40
.eslintrc Normal file
View File

@@ -0,0 +1,40 @@
{
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
},
"extends": [
"airbnb",
"prettier"
],
"plugins": [
"prettier",
"import"
],
"rules": {
"prettier/prettier": "error",
"import/no-extraneous-dependencies": [
"error", {
"devDependencies": [
"test/**",
"packages/**/test/**",
"packages/**/*.test.js"
],
"optionalDependencies": false,
"peerDependencies": false
}
],
"import/order": [
"error", {
"groups": [
"builtin",
"external",
"internal",
"parent",
"sibling",
"index"
]
}
]
}
}

11
.gitignore vendored Normal file
View File

@@ -0,0 +1,11 @@
node_modules
npm-debug.log
yarn-error.log
.DS_Store
.*.swp
.vscode
.env
coverage
.nyc_output
coverage.lcov
/lib

20
.travis.yml Normal file
View File

@@ -0,0 +1,20 @@
language: node_js
node_js:
- "stable"
- "8"
cache:
directories:
- node_modules
notifications:
email:
on_success: never
on_failure: change
branches:
only:
- master
- /^v[0-9].*$/

21
LICENSE Normal file
View File

@@ -0,0 +1,21 @@
The MIT License (MIT)
Copyright (c) 2018 Joe Fleming (https://github.com/w33ble)
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.

11
README.md Normal file
View File

@@ -0,0 +1,11 @@
# gh-action-bot
Action bot for Github.
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/w33ble/gh-action-bot/master/LICENSE)
[![npm](https://img.shields.io/npm/v/gh-action-bot.svg)](https://www.npmjs.com/package/gh-action-bot)
[![Project Status](https://img.shields.io/badge/status-experimental-orange.svg)](https://nodejs.org/api/documentation.html#documentation_stability_index)
#### License
MIT © [w33ble](https://github.com/w33ble)

5
index.js Normal file
View File

@@ -0,0 +1,5 @@
/* eslint no-global-assign: 0 */
require = require('esm')(module);
const mod = require('./src/index.mjs').default;
module.exports = mod;

3
index.mjs Normal file
View File

@@ -0,0 +1,3 @@
import mod from './src/index.mjs';
export default mod;

71
package.json Normal file
View File

@@ -0,0 +1,71 @@
{
"name": "gh-action-bot",
"version": "0.0.0",
"description": "Action bot for Github",
"main": "index",
"module": "index.mjs",
"scripts": {
"lint": "eslint \"*.{js,mjs}\" \"src/**/*.{js,mjs}\"",
"precommit": "lint-staged",
"version": "auto-changelog -p && auto-authors && git add CHANGELOG.md AUTHORS.md",
"start": "node ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/w33ble/gh-action-bot.git"
},
"keywords": [],
"files": [
"src/",
"index.js",
"index.mjs",
"CHANGELOG.md",
"AUTHORS.md"
],
"author": "Joe Fleming (https://github.com/w33ble)",
"license": "MIT",
"bugs": {
"url": "https://github.com/w33ble/gh-action-bot/issues"
},
"homepage": "https://github.com/w33ble/gh-action-bot",
"auto-changelog": {
"output": "CHANGELOG.md",
"breakingPattern": "BREAKING CHANGE:",
"template": ".changelog_template.hbs",
"ignoreCommitPattern": "(chore|test):",
"commitLimit": false
},
"lint-staged": {
"*.{js,mjs}": [
"eslint --fix"
],
"*.{js,mjs,json,css}": [
"prettier --write"
]
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5"
},
"esm": {
"cjs": true
},
"dependencies": {
"esm": "^3.0.17"
},
"devDependencies": {
"auto-authors": "^0.1.1",
"auto-changelog": "^1.7.0",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.1.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.4",
"prettier": "^1.9.0"
}
}

3
src/index.mjs Normal file
View File

@@ -0,0 +1,3 @@
export default function() {
// es6 module code goes here
}

2611
yarn.lock Normal file

File diff suppressed because it is too large Load Diff