Skip to content

Commit

Permalink
fix(package.json): fix CDN names in ix package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
trxcllnt committed May 21, 2024
1 parent d31d2c5 commit 760242e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gulp/package-task.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ const createMainPackageJson = (target, format) => (orig) => ({
main: `${mainExport}.node.js`,
module: `${mainExport}.node.mjs`,
types: `${mainExport}.node.d.ts`,
unpkg: `${mainExport}.es2015.min.js`,
jsdelivr: `${mainExport}.es2015.min.js`,
unpkg: `${mainExport}.dom.es2015.min.js`,
jsdelivr: `${mainExport}.dom.es2015.min.js`,
browser: {
[`./${mainExport}.node.js`]: `./${mainExport}.dom.js`,
[`./${mainExport}.node.mjs`]: `./${mainExport}.dom.mjs`
Expand Down

0 comments on commit 760242e

Please sign in to comment.