chai 4.0.2 → 4.2.0

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/CODEOWNERS ADDED
@@ -0,0 +1 @@
1
+ * @chaijs/chai
package/CONTRIBUTING.md CHANGED
@@ -154,7 +154,7 @@ Simply run `make release-major`, `make release-minor`, or `make-release-patch`
154
154
  and it will automatically do the following:
155
155
 
156
156
  - Build chai.js
157
- - Bump the version numbers accross the project
157
+ - Bump the version numbers across the project
158
158
  - Make a commit within git
159
159
 
160
160
  All you need to do is push the commit up and make a pull request, one of the core contributors will merge it and publish a release.
@@ -163,7 +163,7 @@ All you need to do is push the commit up and make a pull request, one of the cor
163
163
 
164
164
  Anyone who is a core contributor (see the [Core Contributors Heading in the Readme](https://github.com/chaijs/chai#core-contributors)) can publish a release:
165
165
 
166
- 1. Go to te [Releases page on Github](https://github.com/chaijs/chai/releases)
166
+ 1. Go to the [Releases page on Github](https://github.com/chaijs/chai/releases)
167
167
  2. Hit "Draft a new release" (if you can't see this, you're not a core contributor!)
168
168
  3. Write human-friendly Release Notes based on changelog.
169
169
  - The release title is "x.x.x / YYYY-MM-DD" (where x.x.x is the version number)
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2016 Chai.js Assertion Library
3
+ Copyright (c) 2017 Chai.js Assertion Library
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -23,7 +23,7 @@
23
23
  src="https://img.shields.io/github/tag/chaijs/chai.svg?style=flat-square"
24
24
  />
25
25
  </a>
26
- <a href="https://www.npmjs.com/packages/chai">
26
+ <a href="https://www.npmjs.com/package/chai">
27
27
  <img
28
28
  alt="node:?"
29
29
  src="https://img.shields.io/badge/node-%3E=4.0-blue.svg?style=flat-square"
@@ -49,10 +49,10 @@
49
49
  src="https://img.shields.io/travis/chaijs/chai/master.svg?style=flat-square"
50
50
  />
51
51
  </a>
52
- <a href="https://coveralls.io/r/chaijs/chai">
52
+ <a href="https://codecov.io/gh/chaijs/chai">
53
53
  <img
54
54
  alt="coverage:?"
55
- src="https://img.shields.io/coveralls/chaijs/chai/master.svg?style=flat-square"
55
+ src="https://img.shields.io/codecov/c/github/chaijs/chai.svg?style=flat-square"
56
56
  />
57
57
  </a>
58
58
  <a href="">
@@ -86,7 +86,7 @@ For more information or to download plugins, view the [documentation](http://cha
86
86
 
87
87
  ## What is Chai?
88
88
 
89
- Chai is an _assertion library_, similar to Node's build in `assert`. It makes testing much easier by giving you lots of assertions you can run against your code.
89
+ Chai is an _assertion library_, similar to Node's built-in `assert`. It makes testing much easier by giving you lots of assertions you can run against your code.
90
90
 
91
91
  ## Installation
92
92