Skip to content

Commit

Permalink
Update creating-an-internal-package.mdx (#8669)
Browse files Browse the repository at this point in the history
Incorrect use of comma in package.json file

### Description

<!--
  ✍️ Write a short summary of your work.
  If necessary, include relevant screenshots.
-->

### Testing Instructions

<!--
  Give a quick description of steps to test your changes.
-->
  • Loading branch information
pkellner authored Jul 11, 2024
1 parent c075abb commit 1957068
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ Next, create the `package.json` for the package. By adding this file, you'll ful
"exports": {
"./add": {
"types": "./src/add.ts",
"default": "./dist/add.js",
"default": "./dist/add.js"
},
"./subtract": {
"types": "./src/subtract.ts",
"default": "./dist/subtract.js",
"default": "./dist/subtract.js"
},
},
"devDependencies": {
Expand Down

0 comments on commit 1957068

Please sign in to comment.