Skip to content

Commit 456a48d

Browse files
committed
🔖 Update versions
1 parent c97602f commit 456a48d

File tree

4 files changed

+26
-8
lines changed

4 files changed

+26
-8
lines changed

apps/www/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# www
22

3+
## 1.0.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- usehooks-ts@3.0.1
9+
310
## 1.0.0
411

512
### Major Changes

apps/www/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "www",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"private": true,
55
"type": "module",
66
"scripts": {

packages/usehooks-ts/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 3.0.1
4+
5+
### Patch Changes
6+
7+
- Fix: Update exported files
8+
39
## 3.0.0
410

511
### Major Changes

packages/usehooks-ts/package.json

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "usehooks-ts",
33
"private": false,
4-
"version": "3.0.0",
4+
"version": "3.0.1",
55
"description": "React hook library, ready to use, written in Typescript.",
66
"author": "Julien CARON <juliencaron@protonmail.com>",
77
"homepage": "https://usehooks-ts.com",
@@ -12,19 +12,24 @@
1212
],
1313
"license": "MIT",
1414
"type": "module",
15-
"main": "./dist/index.cjs",
16-
"module": "./dist/index.js",
15+
"main": "./dist/index.js",
1716
"types": "./dist/index.d.ts",
1817
"exports": {
18+
"./package.json": "./package.json",
1919
".": {
20-
"require": "./dist/index.cjs",
21-
"import": "./dist/index.js",
22-
"types": "./dist/index.d.ts"
20+
"import": {
21+
"types": "./dist/index.d.ts",
22+
"default": "./dist/index.js"
23+
},
24+
"require": {
25+
"types": "./dist/index.d.cts",
26+
"default": "./dist/index.cjs"
27+
}
2328
}
2429
},
2530
"sideEffects": false,
2631
"scripts": {
27-
"build": "tsup && rimraf ./dist/index.d.cts",
32+
"build": "tsup",
2833
"dev": "tsup --watch",
2934
"test": "vitest run",
3035
"test:watch": "vitest",

0 commit comments

Comments
 (0)