Skip to content

Commit

Permalink
Fix types export in ESModule context.
Browse files Browse the repository at this point in the history
  • Loading branch information
cr0cK committed Mar 6, 2024
1 parent d819c75 commit 1b67331
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v1.1.3

### Fixed

- Fix types export in ESModule context.

## v1.1.1

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@productive-codebases/toolbox",
"description": "Tooling for productive codebases.",
"version": "1.1.2",
"version": "1.1.3",
"scripts": {
":d": "npm run dev",
"build": "tsc && vite build",
Expand Down Expand Up @@ -32,7 +32,8 @@
"exports": {
".": {
"import": "./dist/toolbox.es.js",
"require": "./dist/toolbox.umd.js"
"require": "./dist/toolbox.umd.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/toolbox.cjs.js",
Expand Down

0 comments on commit 1b67331

Please sign in to comment.