Skip to content

Commit 1c8ae0f

Browse files
dependabot[bot]Jason3Sautofix-ci[bot]
authored
build(deps-dev): bump the dependencies group across 1 directory with 2 updates (#1065)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jason Dent <jason@streetsidesoftware.nl> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
1 parent 9ccd9f9 commit 1c8ae0f

File tree

7 files changed

+299
-130
lines changed

7 files changed

+299
-130
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from './dist/index.js';
1+
export * from './dist/index.mjs';

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,22 @@
66
"access": "public",
77
"provenance": true
88
},
9+
"sideEffects": false,
910
"type": "module",
1011
"main": "./dist/index.cjs",
1112
"types": "./dist/index.d.cts",
12-
"module": "./dist/index.js",
13-
"sideEffects": false,
13+
"module": "./dist/index.mjs",
14+
"exports": {
15+
".": {
16+
"browser": "./dist/browser.js",
17+
"deno": "./dist/browser.js",
18+
"import": "./dist/index.mjs",
19+
"require": "./dist/index.cjs"
20+
}
21+
},
22+
"engines": {
23+
"node": ">= 20.0.0"
24+
},
1425
"scripts": {
1526
"clean": "shx rm -rf dist out lib coverage",
1627
"lint": "eslint \"src/**/*.ts\"",
@@ -34,17 +45,6 @@
3445
"test:attw": "attw --pack",
3546
"test:vitest": "vitest run"
3647
},
37-
"exports": {
38-
".": {
39-
"browser": "./dist/browser.js",
40-
"deno": "./dist/browser.js",
41-
"import": "./dist/index.js",
42-
"require": "./dist/index.cjs"
43-
}
44-
},
45-
"engines": {
46-
"node": ">= 20.0.0"
47-
},
4848
"repository": {
4949
"type": "git",
5050
"url": "git+https://github.com/streetsidesoftware/regexp-worker.git"
@@ -84,7 +84,7 @@
8484
"lorem-ipsum": "^2.0.8",
8585
"prettier": "^3.6.2",
8686
"shx": "^0.4.0",
87-
"tsdown": "^0.15.12",
87+
"tsdown": "^0.16.5",
8888
"typescript": "^5.9.3",
8989
"typescript-eslint": "^8.47.0",
9090
"vitest": "^3.2.4"

0 commit comments

Comments
 (0)