Skip to content

Commit 9145f7e

Browse files
author
Robert Jackson
committed
Initial commit, basic structure.
0 parents  commit 9145f7e

10 files changed

+932
-0
lines changed

.eslintignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# do not ignore dotfiles
2+
!.*
3+
4+
/node_modules

.eslintrc.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
module.exports = {
2+
root: true,
3+
extends: ['eslint:recommended', 'plugin:node/recommended', 'prettier'],
4+
plugins: ['prettier', 'node'],
5+
parserOptions: {
6+
ecmaVersion: 2017,
7+
sourceType: 'script',
8+
},
9+
env: {
10+
node: true,
11+
},
12+
rules: {
13+
'prettier/prettier': 'error',
14+
},
15+
};

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/node_modules

.prettierrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "es5",
4+
"printWidth": 100
5+
}

CHANGELOG.md

Whitespace-only changes.

LICENSE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2019 Robert Jackson
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.

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# create-rwjblue-release-it-setup
2+
3+
Simple npm init / yarn create bin package to add release-it setup used by rwjblue.
4+
5+
## License
6+
7+
This project is licensed under the [MIT License](LICENSE.md).

index.js

Whitespace-only changes.

package.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"name": "create-rwjblue-release-it-setup",
3+
"version": "0.0.0",
4+
"description": "Simple npm init / yarn create bin package to add release-it setup used by rwjblue",
5+
"repository": "https://github.com/rwjblue/create-rwjblue-release-it-setup",
6+
"license": "MIT",
7+
"author": "Robert Jackson <me@rwjblue.com>",
8+
"keywords": [],
9+
"files": [
10+
"index.js"
11+
],
12+
"main": "index.js",
13+
"scripts": {
14+
"lint:js": "eslint .",
15+
"test": "qunit"
16+
},
17+
"dependencies": {},
18+
"devDependencies": {
19+
"eslint": "^5.16.0",
20+
"eslint-config-prettier": "^4.2.0",
21+
"eslint-plugin-node": "^9.0.1",
22+
"eslint-plugin-prettier": "^3.0.1",
23+
"prettier": "^1.17.0"
24+
},
25+
"engines": {
26+
"node": ">= 8"
27+
},
28+
"publishConfig": {
29+
"registry": "https://registry.npmjs.org/"
30+
},
31+
"release-it": {
32+
"plugins": {
33+
"release-it-lerna-changelog": {
34+
"infile": "CHANGELOG.md"
35+
}
36+
},
37+
"git": {
38+
"tagName": "v${version}"
39+
},
40+
"github": {
41+
"release": true
42+
}
43+
}
44+
}

0 commit comments

Comments
 (0)