Skip to content

Commit

Permalink
fix require of LIPS package from Node
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Mar 29, 2024
1 parent b962786 commit ec03835
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
### Bugfix
* fix duplicated identifers in syntax-rules (case of SRFI-239 example implementation)

Check failure on line 3 in CHANGELOG.md

View workflow job for this annotation

GitHub Actions / Check for spelling errors

identifers ==> identifiers
* fix `load` of absolute path in Node
* fix require of LIPS package from Node

## 1.0.0-beta.19
### Breaking
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"main": "dist/lips.min.js",
"module": "dist/lips.esm.min.js",
"exports": {
"import": "dist/lips.esm.min.js",
"require": "dist/lips.cjs"
"import": "./dist/lips.esm.min.js",
"require": "./dist/lips.cjs"
},
"unpkg": "dist/lips.min.js",
"scripts": {
Expand Down

0 comments on commit ec03835

Please sign in to comment.