Skip to content

Commit

Permalink
Update package.json exports and version
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsc6955 committed Jan 18, 2024
1 parent 799c0a2 commit 6ffe71b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.1] - 2024-01-17
### Changed
- Exports in `package.json` to include `build/buildApp/index.js` as entry point

## [0.4.0] - 2024-01-17
### Added
- `Paradox.buildApp` function to create reactive components
Expand Down
19 changes: 18 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "penrose-paradox",
"version": "0.4.0",
"version": "0.4.1",
"description": "Simple vanilla JavaScript library for beginners",
"keywords": [
"penrose",
Expand All @@ -18,6 +18,23 @@
"module": "build/index.js",
"types": "build/index.d.ts",
"ts-module": "src/index.ts",
"exports": {
".": {
"import": "./build/index.js",
"require": "./build/index.js"
},
"./buildApp": "./build/buildApp/index.js"
},
"typesVersions": {
"*": {
"./": [
"build/index.d.ts"
],
"./buildApp": [
"build/buildApp/index.d.ts"
]
}
},
"license": "ISC",
"repository": {
"type": "git",
Expand Down

0 comments on commit 6ffe71b

Please sign in to comment.