Skip to content

Commit

Permalink
Merge pull request #54 from bashmish/chore/use-new-chai-bundle-with-t…
Browse files Browse the repository at this point in the history
…ypes

chore: use new chai bundle with types
  • Loading branch information
bashmish authored Dec 24, 2022
2 parents 4325c1b + 2231c37 commit 9364d68
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"main": "src/wrap.js",
"types": "src/wrap.d.ts",
"devDependencies": {
"@bundled-es-modules/chai": "^4.2.2",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@esm-bundle/chai": "^4.3.4-fix.0",
"@ungap/global-this": "^0.4.4",
"@web/dev-server-legacy": "^1.0.0",
"@web/test-runner": "^0.13.27",
Expand Down
2 changes: 1 addition & 1 deletion src/transform.spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { expect } from '@bundled-es-modules/chai';
import { expect } from '@esm-bundle/chai';
import transform from './transform.js';

const testhtml = (strings, ...values) => [strings, values];
Expand Down
2 changes: 1 addition & 1 deletion src/wrap.spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import '@ungap/global-this';
import { expect } from '@bundled-es-modules/chai';
import { expect } from '@esm-bundle/chai';
import wrap from './wrap.js';

describe('wrap', () => {
Expand Down
17 changes: 12 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -845,11 +845,6 @@
lodash "^4.17.19"
to-fast-properties "^2.0.0"

"@bundled-es-modules/chai@^4.2.2":
version "4.2.2"
resolved "https://registry.yarnpkg.com/@bundled-es-modules/chai/-/chai-4.2.2.tgz#88dffebd7cd1e87397738107c3c54b9b4ea56e5e"
integrity sha512-iGmVYw2/zJCoqyKTtWEYCtFmMyi8WmACQKtky0lpNyEKWX0YIOpKWGD7saMXL+tPpllss0otilxV0SLwyi3Ytg==

"@commitlint/cli@^12.1.1":
version "12.1.1"
resolved "https://registry.yarnpkg.com/@commitlint/cli/-/cli-12.1.1.tgz#740370e557a8a17f415052821cdd5276ecb0ab98"
Expand Down Expand Up @@ -1003,6 +998,13 @@
minimatch "^3.0.4"
strip-json-comments "^3.1.1"

"@esm-bundle/chai@^4.3.4-fix.0":
version "4.3.4-fix.0"
resolved "https://registry.yarnpkg.com/@esm-bundle/chai/-/chai-4.3.4-fix.0.tgz#3084cff7eb46d741749f47f3a48dbbdcbaf30a92"
integrity sha512-26SKdM4uvDWlY8/OOOxSB1AqQWeBosCX3wRYUZO7enTAj03CtVxIiCimYVG2WpULcyV51qapK4qTovwkUr5Mlw==
dependencies:
"@types/chai" "^4.2.12"

"@lit/reactive-element@^1.3.0":
version "1.3.1"
resolved "https://registry.yarnpkg.com/@lit/reactive-element/-/reactive-element-1.3.1.tgz#3021ad0fa30a75a41212c5e7f1f169c5762ef8bb"
Expand Down Expand Up @@ -1104,6 +1106,11 @@
"@types/node" "*"
"@types/responselike" "*"

"@types/chai@^4.2.12":
version "4.3.4"
resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.4.tgz#e913e8175db8307d78b4e8fa690408ba6b65dee4"
integrity sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==

"@types/co-body@^6.1.0":
version "6.1.0"
resolved "https://registry.yarnpkg.com/@types/co-body/-/co-body-6.1.0.tgz#b52625390eb0d113c9b697ea92c3ffae7740cdb9"
Expand Down

0 comments on commit 9364d68

Please sign in to comment.