Skip to content

Commit

Permalink
Merge pull request #969 from capricorn86/task/968-fix-issue-with-impo…
Browse files Browse the repository at this point in the history
…rting-cjs-modules-directly

#968@patch: Fixes issue with importing CJS modules directly
  • Loading branch information
capricorn86 committed Jul 5, 2023
2 parents 66b3ab4 + 88e56ec commit b5ff37f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ npm run test:watch

## Branch

Branche names currently have the pattern "task/{issueID}-name-of-branch". However, there is a plan to change this in the future and remove "task/".
Branch names currently have the pattern "task/{issueID}-name-of-branch". However, there is a plan to change this in the future and remove "task/".

## Commit Convention

Expand Down
2 changes: 1 addition & 1 deletion packages/global-registrator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"require": "./cjs/*.map",
"default": "./lib/*.map"
},
"./cjs/*.js": {
"./cjs/*.cjs": {
"import": "./cjs/*.cjs",
"require": "./cjs/*.cjs",
"default": "./cjs/*.cjs"
Expand Down
2 changes: 1 addition & 1 deletion packages/happy-dom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"require": "./cjs/*.map",
"default": "./lib/*.map"
},
"./cjs/*.js": {
"./cjs/*.cjs": {
"import": "./cjs/*.cjs",
"require": "./cjs/*.cjs",
"default": "./cjs/*.cjs"
Expand Down

0 comments on commit b5ff37f

Please sign in to comment.