Skip to content
This repository was archived by the owner on Jul 10, 2025. It is now read-only.

Commit f4334cc

Browse files
authored
Merge pull request #156 from dreamit-de/dependabot/npm_and_yarn/dev-dependencies-898141fc9a
Bump the dev-dependencies group with 4 updates
2 parents ed77189 + bb0613f commit f4334cc

File tree

5 files changed

+22
-18
lines changed

5 files changed

+22
-18
lines changed

package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dreamit/funpara",
3-
"version": "1.3.1",
3+
"version": "1.3.2",
44
"description": "Function parameter library for coding and testing",
55
"scripts": {
66
"build": "tsup-node",
@@ -45,13 +45,14 @@
4545
"homepage": "https://github.com/dreamit-de/funpara#readme",
4646
"devDependencies": {
4747
"@sgohlke/stryker-log-ignorer": "2.0.2",
48-
"@stryker-mutator/vitest-runner": "8.7.1",
49-
"@types/node": "22.15.17",
48+
"@stryker-mutator/vitest-runner": "9.0.1",
49+
"@swc/core": "1.11.24",
50+
"@types/node": "22.15.19",
5051
"@vitest/coverage-v8": "3.1.3",
51-
"oxlint": "0.16.10",
52+
"oxlint": "0.16.11",
5253
"prettier": "3.5.3",
5354
"prettier-plugin-organize-imports": "4.1.0",
54-
"tsup": "8.4.0",
55+
"tsup": "8.5.0",
5556
"typescript": "5.8.3",
5657
"vite-tsconfig-paths": "5.1.4",
5758
"vitest": "3.1.3"

src/index.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -196,10 +196,6 @@ type TimeoutFunction = (
196196
const noCallbackTimeoutFunction: TimeoutFunction = (): number => 1
197197

198198
export {
199-
DateFunction,
200-
ExitFunction,
201-
FetchFunction,
202-
TimeoutFunction,
203199
aggregateErrorFetchFunction,
204200
badRequestFetchFunction,
205201
brokenJSONFetchFunction,
@@ -218,3 +214,5 @@ export {
218214
timeoutFetchFunction,
219215
unknownContentTypeFetchFunction,
220216
}
217+
218+
export type { DateFunction, ExitFunction, FetchFunction, TimeoutFunction }

stryker-incremental.json

Lines changed: 4 additions & 4 deletions
Large diffs are not rendered by default.

tests/index.test.ts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@ import {
22
aggregateErrorFetchFunction,
33
badRequestFetchFunction,
44
brokenJSONFetchFunction,
5-
DateFunction,
65
doNotExitFunction,
7-
ExitFunction,
8-
FetchFunction,
96
fixedDateFunction,
107
fixedResponseFetchFunction,
118
graphQLIntrospectionDisabledFetchFunction,
@@ -18,9 +15,15 @@ import {
1815
testDateFunction,
1916
testDateString,
2017
timeoutFetchFunction,
21-
TimeoutFunction,
2218
unknownContentTypeFetchFunction,
2319
} from '@/index'
20+
// eslint-disable-next-line @typescript-eslint/no-duplicate-imports
21+
import type {
22+
DateFunction,
23+
ExitFunction,
24+
FetchFunction,
25+
TimeoutFunction,
26+
} from '@/index'
2427
import { expect, test } from 'vitest'
2528

2629
/**

tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
"paths": {
1515
"@/*": ["src/*"],
1616
"~/*": ["./*"]
17-
}
17+
},
18+
"verbatimModuleSyntax": true,
19+
"erasableSyntaxOnly": true
1820
},
1921
"include": ["tsup.config.ts", "vitest.config.js", "src/*", "tests/*"],
2022
"exclude": ["node_modules"]

0 commit comments

Comments
 (0)