This repository has been archived by the owner on Apr 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
3,752 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": ["@dixeed/eslint-config"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
8.11.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
'use strict'; | ||
|
||
module.exports = { | ||
extends: ['@commitlint/config-conventional'], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
Oops, something went wrong.