Skip to content

Commit 217e219

Browse files
committed
Merge remote-tracking branch 'upstream/main' into feat/eventemitter/add-eventemitter
2 parents 4c6a0ad + 2a3ecff commit 217e219

File tree

8 files changed

+165
-151
lines changed

8 files changed

+165
-151
lines changed

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,8 @@ node_modules
1717
npm-debug.log
1818

1919
coverage
20-
/chai.js
2120

2221
test/auth/*
2322
!test/auth/.gitkeep
2423

25-
/chai.js
26-
/chai.cjs
24+
/index.js

.npmignore

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

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,16 @@ list of contributors.
147147
Feel free to reach out to any of the core contributors with your questions or
148148
concerns. We will do our best to respond in a timely manner.
149149

150+
[![Keith Cirkel](https://avatars3.githubusercontent.com/u/118266?v=3&s=50)](https://github.com/keithamus)
151+
[![James Garbutt](https://avatars3.githubusercontent.com/u/5677153?v=3&s=50)](https://github.com/43081j)
152+
[![Kristján Oddsson](https://avatars3.githubusercontent.com/u/318208?v=3&s=50)](https://github.com/koddsson)
153+
154+
### Core Contributor Alumni
155+
156+
This project would not be what it is without the contributions from our prior
157+
core contributors, for whom we are forever grateful:
158+
150159
[![Jake Luer](https://avatars3.githubusercontent.com/u/58988?v=3&s=50)](https://github.com/logicalparadox)
151160
[![Veselin Todorov](https://avatars3.githubusercontent.com/u/330048?v=3&s=50)](https://github.com/vesln)
152-
[![Keith Cirkel](https://avatars3.githubusercontent.com/u/118266?v=3&s=50)](https://github.com/keithamus)
153161
[![Lucas Fernandes da Costa](https://avatars3.githubusercontent.com/u/6868147?v=3&s=50)](https://github.com/lucasfcosta)
154162
[![Grant Snodgrass](https://avatars3.githubusercontent.com/u/17260989?v=3&s=50)](https://github.com/meeber)

index.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/chai/interface/assert.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* MIT Licensed
55
*/
66

7-
import * as chai from '../../../index.js';
7+
import * as chai from '../../chai.js';
88
import {Assertion} from '../assertion.js';
99
import {flag, inspect} from '../utils/index.js';
1010
import {AssertionError} from 'assertion-error';

lib/chai/interface/expect.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* MIT Licensed
55
*/
66

7-
import * as chai from '../../../index.js';
7+
import * as chai from '../../chai.js';
88
import {Assertion} from '../assertion.js';
99
import {AssertionError} from 'assertion-error';
1010

0 commit comments

Comments
 (0)