Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: chaijs/chai

Tags

v6.2.0

Toggle v6.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(events): add addChainableMethod event (#1707)

v6.1.0

Toggle v6.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
build(deps-dev): bump tar-fs from 3.0.9 to 3.1.1 (#1706)

Bumps [tar-fs](https://github.com/mafintosh/tar-fs) from 3.0.9 to 3.1.1.
- [Commits](mafintosh/tar-fs@v3.0.9...v3.1.1)

---
updated-dependencies:
- dependency-name: tar-fs
  dependency-version: 3.1.1
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

v6.0.2

Toggle v6.0.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: add eventEmitter (#1693)

Adds an event emitter for hooking into method/property creation

v6.0.1

Toggle v6.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: keep function/class names in bundle (#1701)

v6.0.0

Toggle v6.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: remove unbundled sources (#1700)

* feat: remove unbundled sources

We used to ship two of everything:

- `lib` - the unbundled sources
- `chai.js` - the bundle

We then moved to only shipping `lib`, but this results in a slower and
slightly larger package.

This reverses that decision, such that we have only `index.js` (a
bundle, what was `chai.js` before), and no longer have `lib`.

* feat: move deps to dev dependencies

v5.3.3

Toggle v5.3.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: update npm tag name (#1704)

v5.3.2

Toggle v5.3.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: reintroduce bundle (#1699)

It turns out removing the bundle meant that chai loads a lot slower
thanks to module resolution, etc.

This reintroduces the bundle for 5.x, which will later become the only
entrypoint in 6.x (i.e. `lib` will no longer be shipped).

v5.3.1

Toggle v5.3.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: remove bundled chai (#1694)

Removes the chai bundle such that `chai.js` is now an entry point just
like `index.js`.

We're keeping it around for now since there may be users directly
importing the file. It was already re-exporting what exists in
`index.js`, so this shouldn't be a breaking change.

v5.3.0

Toggle v5.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: change `main` to point at chai directly (#1696)

Instead of using a top-level re-export, we can just point `main` at the
chai entrypoint directly.

Later in life, we can remove `index.js` and `chai.js`.

v5.2.2

Toggle v5.2.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: use `files` for publishing (#1695)

Switches to using the `files` array so we can avoid publishing build
configs, etc.