Skip to content

Commit

Permalink
try again
Browse files Browse the repository at this point in the history
  • Loading branch information
KonnorRogers committed Sep 19, 2024
1 parent f638d5c commit db349a6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Prism Changelog

## 1.29.0-fix.6 (09/17/2024)

- Add legitimate exportmaps for CDNs like JSPM.io [#5](https://github.com/KonnorRogers/prism-esm/pull/5)

## 1.29.0-fix.5 (09/17/2024)

- Fixed subpath exports for CDNs like JSPM.io and TS errors with regexes. [#4](https://github.com/KonnorRogers/prism-esm/pull/4)
Expand Down
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,18 @@
"description": "A prism fork intended for ESM",
"type": "module",
"main": "prism.js",
"module": "prism.js",
"style": "themes/prism.css",
"engines": {
"node": ">=6"
},
"exports": {
".": "./prism.js",
"./*": "./*"
"./prism.js": "./prism.js",
"./prism-core.js": "./prism-core.js",
"./components/*": "./components/*",
"./plugins/*": "./plugins/*",
"./themes/*": "./themes/*"
},
"files": [
"components/**/*.js",
Expand Down Expand Up @@ -111,4 +116,4 @@
"prism-core.d.ts"
]
}
}
}

0 comments on commit db349a6

Please sign in to comment.