Skip to content

Commit

Permalink
🔖 Update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
juliencrn committed Mar 8, 2024
1 parent c97602f commit 456a48d
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 8 deletions.
7 changes: 7 additions & 0 deletions apps/www/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# www

## 1.0.1

### Patch Changes

- Updated dependencies
- [email protected]

## 1.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/www/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "www",
"version": "1.0.0",
"version": "1.0.1",
"private": true,
"type": "module",
"scripts": {
Expand Down
6 changes: 6 additions & 0 deletions packages/usehooks-ts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 3.0.1

### Patch Changes

- Fix: Update exported files

## 3.0.0

### Major Changes
Expand Down
19 changes: 12 additions & 7 deletions packages/usehooks-ts/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "usehooks-ts",
"private": false,
"version": "3.0.0",
"version": "3.0.1",
"description": "React hook library, ready to use, written in Typescript.",
"author": "Julien CARON <[email protected]>",
"homepage": "https://usehooks-ts.com",
Expand All @@ -12,19 +12,24 @@
],
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"sideEffects": false,
"scripts": {
"build": "tsup && rimraf ./dist/index.d.cts",
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
Expand Down

0 comments on commit 456a48d

Please sign in to comment.