Skip to content

Commit

Permalink
deps: Update tap and size-limit
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhil committed Sep 2, 2024
1 parent 8ac88a2 commit 1a813d6
Show file tree
Hide file tree
Showing 4 changed files with 2,059 additions and 4,131 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
*~
.#*
.DS_Store
.nyc_output/
coverage/
.tap/
dist/
docs/
node_modules/
Expand Down
4 changes: 2 additions & 2 deletions .size-limit.cjs
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
module.exports = [
{
limit: "10 KB",
limit: "15 KB",
path: "dist/ngrammy.cjs",
},
{
limit: "10 KB",
path: "dist/ngrammy.esm.js",
},
{
limit: "10 KB",
limit: "15 KB",
path: "dist/ngrammy.min.cjs",
},
{
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
"size": "size-limit",
"prepare": "tsc -noEmit && ./build.js",
"lint": "eslint",
"coverage": "TS_NODE_PROJECT=tsconfig.test.json tap --ts --no-browser --coverage --coverage-report=html --reporter=dot --check-coverage 'src/**/*.test.ts'",
"test": "TS_NODE_PROJECT=tsconfig.test.json tap --ts --reporter=dot 'src/**/*.test.ts'",
"coverage": "TS_NODE_PROJECT=tsconfig.test.json tap report --coverage-report=html",
"test": "TS_NODE_PROJECT=tsconfig.test.json tap",
"build": "rm -rf dist/* && ./build.js",
"dev": "esbuild src/index.ts --bundle --watch --outfile=dev/ngrammy.esm.js"
},
Expand All @@ -39,7 +39,7 @@
}
},
"devDependencies": {
"@size-limit/preset-small-lib": "^5.0.1",
"@size-limit/preset-small-lib": "^11.1.4",
"@types/node": "12",
"@types/tap": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^4.28.3",
Expand All @@ -49,9 +49,9 @@
"fast-check": "^2.17.0",
"husky": "^7.0.1",
"prettier": "^2.3.2",
"size-limit": "^5.0.1",
"size-limit": "^11.1.4",
"source-map-support": "^0.5.19",
"tap": "^15.0.9",
"tap": "^21.0.1",
"ts-node": "^10.1.0",
"tslib": "^2.3.0",
"typedoc": "^0.26.6",
Expand Down
Loading

0 comments on commit 1a813d6

Please sign in to comment.