Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
chore: setup project
Browse files Browse the repository at this point in the history
  • Loading branch information
Nargonath committed Apr 20, 2018
1 parent 7c861e4 commit 3943e98
Show file tree
Hide file tree
Showing 9 changed files with 3,752 additions and 0 deletions.
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

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
indent_size = 2
indent_style = space
3 changes: 3 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": ["@dixeed/eslint-config"]
}
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
8.11.1
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: node_js
cache:
directories:
- ~/.npm
notifications:
email: false
node_js:
- '9'
- '8'
- '6'
after_success:
- npm run travis-deploy-once "npm run semantic-release"
branches:
except:
- /^v\d+\.\d+\.\d+$/
Empty file added bin/cra-build-watch.js
Empty file.
5 changes: 5 additions & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
'use strict';

module.exports = {
extends: ['@commitlint/config-conventional'],
};
61 changes: 61 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{
"name": "cra-build-watch",
"version": "0.0.0-development",
"description": "A script for create-react-app that writes development builds to the disk",
"main": "scripts/index.js",
"bin": "bin/cra-build-watch.js",
"files": [
"bin",
"scripts"
],
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"cm": "git-cz",
"commitmsg": "commitlint -e",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {
"printWidth": 100,
"trailingComma": "es5",
"singleQuote": true
},
"repository": {
"type": "git",
"url": "https://github.com/Nargonath/cra-build-watch.git"
},
"bugs": {
"url": "https://github.com/Nargonath/cra-build-watch/issues"
},
"homepage": "https://github.com/Nargonath/cra-build-watch#readme",
"author": "Nargonath <[email protected]>",
"keywords": [
"create-react-app",
"react",
"webpack",
"development-environment",
"build",
"reactjs"
],
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "6.1.3",
"@commitlint/config-conventional": "6.1.3",
"@dixeed/eslint-config": "2.0.0",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.1.0",
"eslint": "4.19.1",
"husky": "0.14.3",
"lint-staged": "7.0.4",
"prettier": "1.12.1",
"travis-deploy-once": "^4.4.1",
"semantic-release": "^15.1.7"
}
}
Empty file added scripts/index.js
Empty file.
Loading

0 comments on commit 3943e98

Please sign in to comment.