Skip to content

Commit

Permalink
chore(deps): update dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
voxpelli committed Jul 18, 2024
1 parent 019fa5d commit 417aeaa
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 27 deletions.
1 change: 0 additions & 1 deletion .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
#!/usr/bin/env sh

npx --no validate-conventional-commit < .git/COMMIT_EDITMSG
2 changes: 0 additions & 2 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npm test
5 changes: 2 additions & 3 deletions .knip.jsonc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"$schema": "https://unpkg.com/knip@2/schema.json",
"ignore": ["index.test-d.ts"],
"ignoreDependencies": ["@types/mocha"]
"$schema": "https://unpkg.com/knip@5/schema.json",
"ignore": ["index.test-d.ts"]
}
3 changes: 2 additions & 1 deletion index.test-d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ expectAssignable<RenderableElementFunction<any>>(customPropsElem2);
expectType<HtmlMethodResult>(html`<wowzors class="wow"><${customPropsElem} foo=${123} /></wowzors>`);
expectType<HtmlMethodResult>(html`<wowzors class="wow"><${customPropsElem2} foo=${{ key: true }} /></wowzors>`);

expectError(h(abc, { foo: null }));
// TODO: For some reason no longer an error, should it be?
// expectError(h(abc, { foo: null }));
expectError(h(customPropsElem, { yay: 123 }));
expectError(h(customPropsElem2, { foo: 123 }));

Expand Down
40 changes: 20 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"clean:declarations": "rm -rf $(find . -maxdepth 2 -type f -name '*.d.ts*')",
"clean:esm-declarations": "rm -rf $(find . -maxdepth 2 -type f -name '*.d.mts*')",
"clean": "run-p clean:*",
"prepare": "husky install",
"prepare": "husky",
"prepublishOnly": "run-s build",
"test:mocha": "c8 --reporter=lcov --reporter text mocha 'test/**/*.spec.js'",
"test-ci": "run-s test:*",
Expand All @@ -81,30 +81,30 @@
},
"devDependencies": {
"@skypack/package-check": "^0.2.2",
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.1",
"@types/chai": "^4.3.16",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.7",
"@types/node": "^18.19.40",
"@types/sinon": "^10.0.15",
"@types/sinon-chai": "^3.2.9",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"@voxpelli/eslint-config": "^20.0.0",
"@voxpelli/tsconfig": "^8.0.0",
"c8": "^8.0.0",
"chai": "^4.3.7",
"@voxpelli/tsconfig": "^12.0.1",
"c8": "^10.1.2",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"eslint": "^9.7.0",
"husky": "^8.0.3",
"installed-check": "^7.1.1",
"knip": "^2.40.0",
"linemod": "^1.1.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"npm-run-all2": "^6.0.5",
"sinon": "^15.1.2",
"husky": "^9.1.1",
"installed-check": "^9.3.0",
"knip": "^5.26.0",
"linemod": "^2.0.0",
"mocha": "^10.6.0",
"nodemon": "^3.1.4",
"npm-run-all2": "^6.2.2",
"sinon": "^18.0.0",
"sinon-chai": "^3.7.0",
"tsd": "^0.28.1",
"type-coverage": "^2.26.0",
"typescript": "~5.1.3",
"tsd": "^0.31.1",
"type-coverage": "^2.29.1",
"typescript": "~5.5.3",
"validate-conventional-commit": "^1.0.4"
}
}

0 comments on commit 417aeaa

Please sign in to comment.