whoops 4.0.2 → 4.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -4
- package/package.json +53 -11
- package/{lib → src}/add-error-props.js +3 -3
- package/{lib → src}/create-error.js +4 -2
- package/{lib → src}/create-extend-error.js +2 -2
- package/{lib → src}/helpers.js +0 -0
- package/{lib → src}/index.js +0 -0
- package/CHANGELOG.md +0 -254
package/README.md
CHANGED
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
# whoops
|
|
2
2
|
|
|
3
3
|

|
|
4
|
-
[](https://travis-ci.org/Kikobeats/whoops)
|
|
5
4
|
[](https://coveralls.io/github/Kikobeats/whoops)
|
|
6
|
-
[](https://david-dm.org/Kikobeats/whoops)
|
|
7
|
-
[](https://david-dm.org/Kikobeats/whoops#info=devDependencies)
|
|
8
5
|
[](https://www.npmjs.org/package/whoops)
|
|
9
|
-
[](https://paypal.me/kikobeats)
|
|
10
6
|
|
|
11
7
|
> It makes simple throw qualified errors. Inspired in [errno](https://github.com/rvagg/node-errno), [create-error-class](https://github.com/floatdrop/create-error-class) and [fault](https://github.com/wooorm/fault).
|
|
12
8
|
|
|
@@ -132,6 +128,12 @@ switch (err.name) {
|
|
|
132
128
|
};
|
|
133
129
|
```
|
|
134
130
|
|
|
131
|
+
## Related
|
|
132
|
+
|
|
133
|
+
- [create-error-class](https://github.com/floatdrop/create-error-class) – Create error class.
|
|
134
|
+
- [fault](https://github.com/wooorm/fault) – Functional errors with formatted output.
|
|
135
|
+
|
|
136
|
+
|
|
135
137
|
## License
|
|
136
138
|
|
|
137
139
|
MIT © [Kiko Beats](http://www.kikobeats.com)
|
package/package.json
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"name": "whoops",
|
|
3
3
|
"description": "It makes simple throw qualified errors.",
|
|
4
4
|
"homepage": "https://github.com/Kikobeats/whoops",
|
|
5
|
-
"version": "4.
|
|
6
|
-
"main": "
|
|
5
|
+
"version": "4.1.2",
|
|
6
|
+
"main": "src/index.js",
|
|
7
7
|
"author": {
|
|
8
8
|
"email": "josefrancisco.verdu@gmail.com",
|
|
9
9
|
"name": "Kiko Beats",
|
|
@@ -24,31 +24,73 @@
|
|
|
24
24
|
"throw"
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"clean-stack": "~
|
|
28
|
-
"mimic-fn": "~
|
|
27
|
+
"clean-stack": "~3.0.0",
|
|
28
|
+
"mimic-fn": "~3.1.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"
|
|
31
|
+
"@commitlint/cli": "latest",
|
|
32
|
+
"@commitlint/config-conventional": "latest",
|
|
33
|
+
"c8": "latest",
|
|
34
|
+
"ci-publish": "latest",
|
|
35
|
+
"conventional-github-releaser": "latest",
|
|
36
|
+
"finepack": "latest",
|
|
37
|
+
"git-authors-cli": "latest",
|
|
32
38
|
"mocha": "latest",
|
|
33
|
-
"
|
|
39
|
+
"nano-staged": "latest",
|
|
40
|
+
"npm-check-updates": "latest",
|
|
41
|
+
"prettier-standard": "latest",
|
|
34
42
|
"should": "latest",
|
|
35
|
-
"
|
|
43
|
+
"simple-git-hooks": "latest",
|
|
44
|
+
"standard": "latest",
|
|
45
|
+
"standard-markdown": "latest",
|
|
46
|
+
"standard-version": "latest"
|
|
36
47
|
},
|
|
37
48
|
"engines": {
|
|
38
49
|
"node": ">= 8"
|
|
39
50
|
},
|
|
40
51
|
"files": [
|
|
41
|
-
"
|
|
52
|
+
"src"
|
|
42
53
|
],
|
|
43
54
|
"scripts": {
|
|
44
55
|
"clean": "rm -rf node_modules",
|
|
56
|
+
"contributors": "(git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
|
|
45
57
|
"coveralls": "nyc report --reporter=text-lcov | coveralls",
|
|
46
|
-
"lint": "standard
|
|
58
|
+
"lint": "standard",
|
|
59
|
+
"postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
|
|
60
|
+
"prerelease": "npm run update:check && npm run contributors",
|
|
47
61
|
"pretest": "npm run lint",
|
|
48
|
-
"
|
|
62
|
+
"release": "standard-version -a",
|
|
63
|
+
"release:github": "conventional-github-releaser -p angular",
|
|
64
|
+
"release:tags": "git push --follow-tags origin HEAD:master",
|
|
65
|
+
"test": "c8 mocha",
|
|
66
|
+
"update": "ncu -u",
|
|
67
|
+
"update:check": "ncu -- --error-level 2"
|
|
49
68
|
},
|
|
50
69
|
"license": "MIT",
|
|
70
|
+
"commitlint": {
|
|
71
|
+
"extends": [
|
|
72
|
+
"@commitlint/config-conventional"
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
"nano-staged": {
|
|
76
|
+
"*.js": [
|
|
77
|
+
"prettier-standard"
|
|
78
|
+
],
|
|
79
|
+
"*.md": [
|
|
80
|
+
"standard-markdown"
|
|
81
|
+
],
|
|
82
|
+
"package.json": [
|
|
83
|
+
"finepack"
|
|
84
|
+
]
|
|
85
|
+
},
|
|
86
|
+
"simple-git-hooks": {
|
|
87
|
+
"commit-msg": "npx commitlint --edit",
|
|
88
|
+
"pre-commit": "npx nano-staged"
|
|
89
|
+
},
|
|
51
90
|
"standard": {
|
|
52
|
-
"
|
|
91
|
+
"globals": [
|
|
92
|
+
"describe",
|
|
93
|
+
"it"
|
|
94
|
+
]
|
|
53
95
|
}
|
|
54
96
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict'
|
|
2
2
|
|
|
3
|
-
const {isFunction, composeErrorMessage} = require('./helpers')
|
|
3
|
+
const { isFunction, composeErrorMessage } = require('./helpers')
|
|
4
4
|
|
|
5
5
|
function interfaceObject (error, ...props) {
|
|
6
6
|
Object.assign(error, ...props)
|
|
@@ -8,8 +8,8 @@ function interfaceObject (error, ...props) {
|
|
|
8
8
|
error.description = isFunction(error.message) ? error.message(error) : error.message
|
|
9
9
|
|
|
10
10
|
error.message = error.code
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
? composeErrorMessage(error.code, error.description)
|
|
12
|
+
: error.description
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
module.exports = interfaceObject
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict'
|
|
2
2
|
|
|
3
|
-
const {inherits} = require('./helpers')
|
|
3
|
+
const { inherits } = require('./helpers')
|
|
4
4
|
const mimicFn = require('mimic-fn')
|
|
5
5
|
|
|
6
6
|
const REGEX_CLASS_NAME = /[^0-9a-zA-Z_$]/
|
|
@@ -21,7 +21,9 @@ function createError (className) {
|
|
|
21
21
|
writable: true
|
|
22
22
|
})
|
|
23
23
|
|
|
24
|
-
|
|
24
|
+
if ('captureStackTrace' in Error) {
|
|
25
|
+
Error.captureStackTrace(this, this.constructor)
|
|
26
|
+
}
|
|
25
27
|
}
|
|
26
28
|
|
|
27
29
|
inherits(ErrorClass, Error)
|
|
@@ -4,12 +4,12 @@ const cleanStack = require('clean-stack')
|
|
|
4
4
|
const mimicFn = require('mimic-fn')
|
|
5
5
|
|
|
6
6
|
const addErrorProps = require('./add-error-props')
|
|
7
|
-
const {isString} = require('./helpers')
|
|
7
|
+
const { isString } = require('./helpers')
|
|
8
8
|
|
|
9
9
|
function createExtendError (ErrorClass, classProps) {
|
|
10
10
|
function ExtendError (props) {
|
|
11
11
|
const error = new ErrorClass()
|
|
12
|
-
const errorProps = isString(props) ? {message: props} : props
|
|
12
|
+
const errorProps = isString(props) ? { message: props } : props
|
|
13
13
|
addErrorProps(error, classProps, errorProps)
|
|
14
14
|
|
|
15
15
|
error.stack = cleanStack(error.stack)
|
package/{lib → src}/helpers.js
RENAMED
|
File without changes
|
package/{lib → src}/index.js
RENAMED
|
File without changes
|
package/CHANGELOG.md
DELETED
|
@@ -1,254 +0,0 @@
|
|
|
1
|
-
<a name="4.0.2"></a>
|
|
2
|
-
## 4.0.2 (2019-03-08)
|
|
3
|
-
|
|
4
|
-
* fix(package): update clean-stack to version 2.0.0 ([24952ae](https://github.com/kikobeats/whoops/commit/24952ae))
|
|
5
|
-
* fix(package): update mimic-fn to version 1.2.0 ([719fc26](https://github.com/kikobeats/whoops/commit/719fc26))
|
|
6
|
-
* fix(package): update mimic-fn to version 2.0.0 ([d5c78a1](https://github.com/kikobeats/whoops/commit/d5c78a1))
|
|
7
|
-
* Refactor ([64f751b](https://github.com/kikobeats/whoops/commit/64f751b))
|
|
8
|
-
* Update compositor.json ([e26b0fd](https://github.com/kikobeats/whoops/commit/e26b0fd))
|
|
9
|
-
* Update compositor.json ([da98ea7](https://github.com/kikobeats/whoops/commit/da98ea7))
|
|
10
|
-
* Update README.md ([0228c84](https://github.com/kikobeats/whoops/commit/0228c84))
|
|
11
|
-
* docs(readme): add Greenkeeper badge ([4e1a125](https://github.com/kikobeats/whoops/commit/4e1a125))
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
<a name="4.0.1"></a>
|
|
16
|
-
## 4.0.1 (2017-08-08)
|
|
17
|
-
|
|
18
|
-
* Reducing library size ([ce26a2d](https://github.com/kikobeats/whoops/commit/ce26a2d))
|
|
19
|
-
* Update README.md ([2e71ec2](https://github.com/kikobeats/whoops/commit/2e71ec2))
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
<a name="4.0.0"></a>
|
|
24
|
-
# 4.0.0 (2017-08-08)
|
|
25
|
-
|
|
26
|
-
* refactor ([ca6e60e](https://github.com/kikobeats/whoops/commit/ca6e60e))
|
|
27
|
-
* Remove unnecessasry ([6ec4220](https://github.com/kikobeats/whoops/commit/6ec4220))
|
|
28
|
-
* Support attach props into constructor ([8dd67b9](https://github.com/kikobeats/whoops/commit/8dd67b9))
|
|
29
|
-
* Update builds ([6e6275c](https://github.com/kikobeats/whoops/commit/6e6275c))
|
|
30
|
-
* Update docs ([515c498](https://github.com/kikobeats/whoops/commit/515c498))
|
|
31
|
-
* Update README.md ([a0dc9b0](https://github.com/kikobeats/whoops/commit/a0dc9b0))
|
|
32
|
-
* Update README.md ([b289826](https://github.com/kikobeats/whoops/commit/b289826))
|
|
33
|
-
* Update README.md ([bf87a1f](https://github.com/kikobeats/whoops/commit/bf87a1f))
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
<a name="3.1.1"></a>
|
|
38
|
-
## 3.1.1 (2017-07-18)
|
|
39
|
-
|
|
40
|
-
* Update README.md ([4561a8b](https://github.com/kikobeats/whoops/commit/4561a8b))
|
|
41
|
-
* docs(readme): add Greenkeeper badge ([9b93e2c](https://github.com/kikobeats/whoops/commit/9b93e2c))
|
|
42
|
-
* chore(package): update clean-stack to version 1.2.0 ([b2cb039](https://github.com/kikobeats/whoops/commit/b2cb039))
|
|
43
|
-
* chore(package): update clean-stack to version 1.3.0 ([12fb684](https://github.com/kikobeats/whoops/commit/12fb684))
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
<a name="3.1.0"></a>
|
|
48
|
-
# 3.1.0 (2016-12-19)
|
|
49
|
-
|
|
50
|
-
* Add description field ([6b3b308](https://github.com/kikobeats/whoops/commit/6b3b308))
|
|
51
|
-
* Drop node 5 from testing ([c223c7f](https://github.com/kikobeats/whoops/commit/c223c7f))
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
<a name="3.0.3"></a>
|
|
56
|
-
## 3.0.3 (2016-12-19)
|
|
57
|
-
|
|
58
|
-
* 80 → 100 lines ([a117bb8](https://github.com/kikobeats/whoops/commit/a117bb8))
|
|
59
|
-
* Avoid inline regexp declaration ([2f91173](https://github.com/kikobeats/whoops/commit/2f91173))
|
|
60
|
-
* Better docs ([591d743](https://github.com/kikobeats/whoops/commit/591d743))
|
|
61
|
-
* Test refactor ([58fb3dc](https://github.com/kikobeats/whoops/commit/58fb3dc))
|
|
62
|
-
* Update deps ([c0d5a49](https://github.com/kikobeats/whoops/commit/c0d5a49))
|
|
63
|
-
* Update README.md ([c9c32f8](https://github.com/kikobeats/whoops/commit/c9c32f8))
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
<a name="3.0.2"></a>
|
|
68
|
-
## 3.0.2 (2016-09-13)
|
|
69
|
-
|
|
70
|
-
* chore(package): update clean-stack to version 1.0.0 ([ff0f4ce](https://github.com/kikobeats/whoops/commit/ff0f4ce))
|
|
71
|
-
* Update ([ce66183](https://github.com/kikobeats/whoops/commit/ce66183))
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
<a name="3.0.1"></a>
|
|
76
|
-
## 3.0.1 (2016-08-01)
|
|
77
|
-
|
|
78
|
-
* Avoid eval for setup function name ([1ecde20](https://github.com/kikobeats/whoops/commit/1ecde20))
|
|
79
|
-
* Remove interface string façade ([14c5932](https://github.com/kikobeats/whoops/commit/14c5932))
|
|
80
|
-
* Remove unncessary check ([6a4d469](https://github.com/kikobeats/whoops/commit/6a4d469))
|
|
81
|
-
* Rename extend-error → create-extend-error ([fd3726e](https://github.com/kikobeats/whoops/commit/fd3726e))
|
|
82
|
-
* Setup Error name in constructor ([4ac076d](https://github.com/kikobeats/whoops/commit/4ac076d))
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
<a name="3.0.0"></a>
|
|
87
|
-
# 3.0.0 (2016-07-30)
|
|
88
|
-
|
|
89
|
-
* Add clean-stack dep ([7f32385](https://github.com/kikobeats/whoops/commit/7f32385))
|
|
90
|
-
* Drop < 4 node support ([185ae66](https://github.com/kikobeats/whoops/commit/185ae66))
|
|
91
|
-
* Fix dep ([a87c1ea](https://github.com/kikobeats/whoops/commit/a87c1ea))
|
|
92
|
-
* Refactor fn template ([942a189](https://github.com/kikobeats/whoops/commit/942a189))
|
|
93
|
-
* Remove capture-stack-trace dep ([5fdae23](https://github.com/kikobeats/whoops/commit/5fdae23))
|
|
94
|
-
* Remove string interface with 3 params ([5439d61](https://github.com/kikobeats/whoops/commit/5439d61))
|
|
95
|
-
* Remove unnecessary dep ([78d6dac](https://github.com/kikobeats/whoops/commit/78d6dac))
|
|
96
|
-
* Update docs ([34f5e8c](https://github.com/kikobeats/whoops/commit/34f5e8c))
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
<a name="2.2.0"></a>
|
|
101
|
-
# 2.2.0 (2016-07-30)
|
|
102
|
-
|
|
103
|
-
* Add coverage ([1547649](https://github.com/kikobeats/whoops/commit/1547649))
|
|
104
|
-
* Move pretty on different pkg ([3640943](https://github.com/kikobeats/whoops/commit/3640943))
|
|
105
|
-
* Refactor scaffold ([5907391](https://github.com/kikobeats/whoops/commit/5907391))
|
|
106
|
-
* Remove browser build ([e0e3621](https://github.com/kikobeats/whoops/commit/e0e3621))
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
<a name="2.1.0"></a>
|
|
111
|
-
# 2.1.0 (2016-05-19)
|
|
112
|
-
|
|
113
|
-
* Add missing dependency ([b832bf0](https://github.com/kikobeats/whoops/commit/b832bf0))
|
|
114
|
-
* Add pretty output ([a1c6e4c](https://github.com/kikobeats/whoops/commit/a1c6e4c))
|
|
115
|
-
* Update docs ([1b6c6a8](https://github.com/kikobeats/whoops/commit/1b6c6a8))
|
|
116
|
-
* Update README.md ([30224fe](https://github.com/kikobeats/whoops/commit/30224fe))
|
|
117
|
-
* Update travis builds ([44e69b5](https://github.com/kikobeats/whoops/commit/44e69b5))
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
<a name="2.0.1"></a>
|
|
122
|
-
## 2.0.1 (2016-02-07)
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
* lock dependency ([9d36dd5](https://github.com/kikobeats/whoops/commit/9d36dd5))
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
<a name="2.0.0"></a>
|
|
130
|
-
# 2.0.0 (2016-02-03)
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
* 2.0.0 releases ([c7ba44a](https://github.com/kikobeats/whoops/commit/c7ba44a))
|
|
134
|
-
* Little refactor ([4fb84a1](https://github.com/kikobeats/whoops/commit/4fb84a1))
|
|
135
|
-
* Refactor tests ([5fc36b1](https://github.com/kikobeats/whoops/commit/5fc36b1))
|
|
136
|
-
* Setup correctly instanceof ([6436f3e](https://github.com/kikobeats/whoops/commit/6436f3e))
|
|
137
|
-
* YEAH ([2c8b56b](https://github.com/kikobeats/whoops/commit/2c8b56b))
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
<a name="1.1.1"></a>
|
|
142
|
-
## 1.1.1 (2016-01-28)
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
* 1.1.1 releases ([60cb701](https://github.com/kikobeats/whoops/commit/60cb701))
|
|
146
|
-
* Add standard as devDependency ([313a136](https://github.com/kikobeats/whoops/commit/313a136))
|
|
147
|
-
* Remove lodash.forEach dep ([f5f96ee](https://github.com/kikobeats/whoops/commit/f5f96ee))
|
|
148
|
-
* setup correctly bumped ([75d190b](https://github.com/kikobeats/whoops/commit/75d190b))
|
|
149
|
-
* Update README.md ([ec8d39c](https://github.com/kikobeats/whoops/commit/ec8d39c))
|
|
150
|
-
* Update README.md ([ff486b4](https://github.com/kikobeats/whoops/commit/ff486b4))
|
|
151
|
-
* Update README.md ([23527e7](https://github.com/kikobeats/whoops/commit/23527e7))
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
<a name="1.1.0"></a>
|
|
156
|
-
# 1.1.0 (2016-01-14)
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
* releases ([5fff532](https://github.com/kikobeats/whoops/commit/5fff532))
|
|
160
|
-
* Add .create method ([1315768](https://github.com/kikobeats/whoops/commit/1315768))
|
|
161
|
-
* Add coffe as devDependency ([ce75ae9](https://github.com/kikobeats/whoops/commit/ce75ae9))
|
|
162
|
-
* Add custom message function in object factory ([470414c](https://github.com/kikobeats/whoops/commit/470414c))
|
|
163
|
-
* bye coffee ([6a3a1d4](https://github.com/kikobeats/whoops/commit/6a3a1d4))
|
|
164
|
-
* bye config ([e920003](https://github.com/kikobeats/whoops/commit/e920003))
|
|
165
|
-
* Little tests refactor ([d3abb53](https://github.com/kikobeats/whoops/commit/d3abb53))
|
|
166
|
-
* Update description and documentation ([0ad3cba](https://github.com/kikobeats/whoops/commit/0ad3cba))
|
|
167
|
-
* Update scripts ([29240d2](https://github.com/kikobeats/whoops/commit/29240d2))
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
<a name="1.0.1"></a>
|
|
172
|
-
## 1.0.1 (2015-11-23)
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
* 1.0.1 releases ([56e26f2](https://github.com/kikobeats/whoops/commit/56e26f2))
|
|
176
|
-
* Fix typos in README.md ([e9063f2](https://github.com/kikobeats/whoops/commit/e9063f2))
|
|
177
|
-
* Merge branch 'master' of github.com:kikobeats/whoops ([a363134](https://github.com/kikobeats/whoops/commit/a363134))
|
|
178
|
-
* Merge pull request #4 from jorrit/patch-1 ([d9156f6](https://github.com/kikobeats/whoops/commit/d9156f6))
|
|
179
|
-
* rewrite to avoid new ([23e586b](https://github.com/kikobeats/whoops/commit/23e586b))
|
|
180
|
-
* update to upgrade bower.json ([b18589d](https://github.com/kikobeats/whoops/commit/b18589d))
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
<a name="1.0.0"></a>
|
|
185
|
-
# 1.0.0 (2015-11-20)
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
* 1.0.0 releases ([447ae1e](https://github.com/kikobeats/whoops/commit/447ae1e))
|
|
189
|
-
* refactored and renamed ([cf2b458](https://github.com/kikobeats/whoops/commit/cf2b458))
|
|
190
|
-
* removed extra spaces ([931245d](https://github.com/kikobeats/whoops/commit/931245d))
|
|
191
|
-
* updated ([9bf0fde](https://github.com/kikobeats/whoops/commit/9bf0fde))
|
|
192
|
-
* updated bumped config ([4583c59](https://github.com/kikobeats/whoops/commit/4583c59))
|
|
193
|
-
* updated dependencies ([3d7ec1b](https://github.com/kikobeats/whoops/commit/3d7ec1b))
|
|
194
|
-
* updated documentation ([6ea514b](https://github.com/kikobeats/whoops/commit/6ea514b))
|
|
195
|
-
* updated renaming ([4b9306c](https://github.com/kikobeats/whoops/commit/4b9306c))
|
|
196
|
-
* updated travis builds ([a330eae](https://github.com/kikobeats/whoops/commit/a330eae))
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
<a name="0.2.0"></a>
|
|
201
|
-
# 0.2.0 (2015-10-01)
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
* 0.2.0 releases ([aff1849](https://github.com/kikobeats/whoops/commit/aff1849))
|
|
205
|
-
* Added format for string constructor ([d584188](https://github.com/kikobeats/whoops/commit/d584188))
|
|
206
|
-
* improve example ([aa2d318](https://github.com/kikobeats/whoops/commit/aa2d318))
|
|
207
|
-
* little suite of tests 😁 ([5e11def](https://github.com/kikobeats/whoops/commit/5e11def))
|
|
208
|
-
* Update package.json ([1120535](https://github.com/kikobeats/whoops/commit/1120535))
|
|
209
|
-
* updated ([d5fc2d9](https://github.com/kikobeats/whoops/commit/d5fc2d9))
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
<a name="0.1.3"></a>
|
|
214
|
-
## 0.1.3 (2015-07-28)
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
* 0.1.3 releases ([e0de222](https://github.com/kikobeats/whoops/commit/e0de222))
|
|
218
|
-
* fixed devDependencies ([bccbf41](https://github.com/kikobeats/whoops/commit/bccbf41))
|
|
219
|
-
* updated bumped settings ([67ff23e](https://github.com/kikobeats/whoops/commit/67ff23e))
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
<a name="0.1.2"></a>
|
|
224
|
-
## 0.1.2 (2015-07-28)
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
* 0.1.2 releases ([7273df6](https://github.com/kikobeats/whoops/commit/7273df6))
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
<a name="0.1.1"></a>
|
|
232
|
-
## 0.1.1 (2015-07-28)
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
* 0.1.1 release ([6fcf6d7](https://github.com/kikobeats/whoops/commit/6fcf6d7))
|
|
236
|
-
* 0.1.1 releases ([15d607b](https://github.com/kikobeats/whoops/commit/15d607b))
|
|
237
|
-
* Update README.md ([d5e55b8](https://github.com/kikobeats/whoops/commit/d5e55b8))
|
|
238
|
-
* Update README.md ([869be0a](https://github.com/kikobeats/whoops/commit/869be0a))
|
|
239
|
-
* Update README.md ([8344dab](https://github.com/kikobeats/whoops/commit/8344dab))
|
|
240
|
-
* updated dependencies ([afe3a10](https://github.com/kikobeats/whoops/commit/afe3a10))
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
<a name="0.1.0"></a>
|
|
245
|
-
# 0.1.0 (2015-07-26)
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
* 0.1.0 releases ([594c110](https://github.com/kikobeats/whoops/commit/594c110))
|
|
249
|
-
* added documentation and more examples ([3e68abb](https://github.com/kikobeats/whoops/commit/3e68abb))
|
|
250
|
-
* first approach ([c52341b](https://github.com/kikobeats/whoops/commit/c52341b))
|
|
251
|
-
* Update README.md ([e7172ab](https://github.com/kikobeats/whoops/commit/e7172ab))
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|