Skip to content

Commit b8d3074

Browse files
committed
chore(release): v0.1.0
commit 2f70387abaaeddf11e7e5d18e7e0a16718d6c7be Author: J.C. Hiatt <jc@jchiatt.com> Date: Fri Jul 19 11:26:46 2019 -0500 chore: updating meta data commit ba7456c584647ad69960fbb2905d6dba2a0e74ab Author: J.C. Hiatt <jc@jchiatt.com> Date: Fri Jul 19 10:57:21 2019 -0500 add editor config commit c8baf93c8b182cecf8ce5bf1ad4c2d864c5f0151 Author: J.C. Hiatt <jc@jchiatt.com> Date: Fri Jul 19 10:54:06 2019 -0500 update package name typo commit c43384aecf96ed32af5fc57146ff752a9ae8ec14 Author: J.C. Hiatt <jc@jchiatt.com> Date: Fri Jul 19 10:39:51 2019 -0500 remove travis
1 parent e3dc1ca commit b8d3074

File tree

5 files changed

+65
-54
lines changed

5 files changed

+65
-54
lines changed

.editorconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
end_of_line = lf
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true
11+
12+
[*.md]
13+
insert_final_newline = true
14+
trim_trailing_whitespace = false

.travis.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License
2+
3+
Copyright (c) 2019 J.C. Hiatt
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,13 @@
11
# 🔥🐒💥 React Chaos
22

3-
[![Travis][build-badge]][build]
4-
[![npm package][npm-badge]][npm]
5-
[![Coveralls][coveralls-badge]][coveralls]
6-
73
Chaos Engineering for your React applications.
84

9-
[build-badge]: https://img.shields.io/travis/jchiatt/react-chaos/master.png?style=flat-square
10-
[build]: https://travis-ci.org/jchiatt/react-chaos
11-
[npm-badge]: https://img.shields.io/npm/v/npm-package.png?style=flat-square
12-
[npm]: https://www.npmjs.org/package/react-chaos
13-
[coveralls-badge]: https://coveralls.io/repos/github/jchiatt/react-chaos/badge.svg?branch=master
14-
[coveralls]: https://coveralls.io/github/jchiatt/react-chaos?branch=master
15-
165
## What It Does
176

187
React Chaos is currently a higher order component that will randomly throw `Error`s in the component it wraps. The likelihood for the error to throw is based on a `level` you set when you wrap a component.
198

209
Blog post: [Announcing React Chaos](https://jchiatt.com/announcing-react-chaos/)
10+
Demo: [https://react-chaos.netlify.com/](https://react-chaos.netlify.com/)
2111

2212
## 🛑 Pre-Installation Notes
2313

package.json

Lines changed: 29 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,33 @@
11
{
2-
"name": "chaos-react",
2+
"name": "react-chaos",
33
"version": "0.1.0",
4+
"description": "Chaos engineering for your React apps.",
5+
"license": "MIT",
6+
"repository": "jchiatt/react-chaos",
7+
"author": "jchiatt",
8+
"homepage": "https://github.com/jchiatt/react-chaos",
9+
"bugs": "https://github.com/jchiatt/react-chaos/issues",
10+
"bin": "",
411
"main": "dist/index.js",
5-
"umd:main": "dist/chaos-react.umd.production.js",
6-
"module": "dist/chaos-react.es.production.js",
12+
"umd:main": "dist/react-chaos.umd.production.js",
13+
"module": "dist/react-chaos.es.production.js",
714
"typings": "dist/index.d.ts",
8-
"files": [
9-
"dist"
10-
],
15+
"engines": {
16+
"node": ">= 8"
17+
},
1118
"scripts": {
1219
"start": "tsdx watch",
1320
"build": "tsdx build",
1421
"test": "tsdx test --env=jsdom"
1522
},
23+
"files": [
24+
"dist",
25+
"README.md",
26+
"LICENSE"
27+
],
1628
"peerDependencies": {
1729
"react": ">=16"
1830
},
19-
"husky": {
20-
"hooks": {
21-
"pre-commit": "pretty-quick --staged"
22-
}
23-
},
24-
"prettier": {
25-
"printWidth": 80,
26-
"semi": true,
27-
"singleQuote": true,
28-
"trailingComma": "es5"
29-
},
3031
"devDependencies": {
3132
"@types/jest": "^24.0.15",
3233
"@types/react": "^16.8.20",
@@ -42,5 +43,16 @@
4243
"babel-jest": "^24.8.0",
4344
"jest": "^24.8.0",
4445
"jest-dom": "^3.4.0"
46+
},
47+
"husky": {
48+
"hooks": {
49+
"pre-commit": "pretty-quick --staged"
50+
}
51+
},
52+
"prettier": {
53+
"printWidth": 80,
54+
"semi": true,
55+
"singleQuote": true,
56+
"trailingComma": "es5"
4557
}
4658
}

0 commit comments

Comments
 (0)