Skip to content

Commit

Permalink
more package.json export fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
arietrouw committed Sep 5, 2024
1 parent 4110f33 commit dbdc850
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@
"types": "./dist/node/index.d.ts",
"default": "./dist/node/index.mjs"
}
}
},
"module": "./dist/node/index.mjs",
"types": "./dist/node/index.d.ts"
},
"./package.json": "./package.json"
},
Expand Down Expand Up @@ -54,4 +56,4 @@
"publishConfig": {
"access": "public"
}
}
}
10 changes: 6 additions & 4 deletions packages/modules/packages/bridge/packages/http/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,14 @@
"types": "./dist/node/index.d.ts",
"default": "./dist/node/index.mjs"
}
}
},
"module": "./dist/neutral/index.mjs",
"types": "./dist/neutral/index.d.ts"
},
"./package.json": "./package.json"
},
"module": "dist/neutral/index-browser.mjs",
"types": "dist/neutral/index-browser.d.ts",
"module": "dist/neutral/index.mjs",
"types": "dist/neutral/index.d.ts",
"dependencies": {
"@xylabs/assert": "^4.0.9",
"@xylabs/axios": "^4.0.9",
Expand Down Expand Up @@ -83,4 +85,4 @@
"publishConfig": {
"access": "public"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@
"types": "./dist/node/index.d.ts",
"default": "./dist/node/index.mjs"
}
}
},
"module": "./dist/neutral/index.mjs",
"types": "./dist/neutral/index.d.ts"
},
"./package.json": "./package.json"
},
Expand Down Expand Up @@ -69,4 +71,4 @@
"publishConfig": {
"access": "public"
}
}
}
6 changes: 4 additions & 2 deletions packages/modules/packages/bridge/packages/worker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@
"import": {
"types": "./dist/node/index.d.ts",
"default": "./dist/node/index.mjs"
}
},
"module": "./dist/neutral/index.mjs",
"types": "./dist/neutral/index.d.ts"
},
"./package.json": "./package.json"
},
Expand Down Expand Up @@ -66,4 +68,4 @@
"publishConfig": {
"access": "public"
}
}
}
6 changes: 4 additions & 2 deletions packages/protocol/packages/core/packages/hash/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@
"types": "./dist/node/index.d.ts",
"default": "./dist/node/index.mjs"
}
}
},
"module": "./dist/neutral/index.mjs",
"types": "./dist/neutral/index.d.ts"
},
"./worker/subtleHash-bundle.mjs": {
"browser": "./dist/browser/worker/subtleHash-bundle.mjs"
Expand Down Expand Up @@ -73,4 +75,4 @@
"publishConfig": {
"access": "public"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@
"types": "./types.node.d.ts",
"default": "./dist/node/index.mjs"
}
}
},
"module": "./dist/neutral/index.mjs",
"types": "./dist/neutral/index.d.ts"
},
"./package.json": "./package.json"
},
Expand All @@ -50,4 +52,4 @@
"publishConfig": {
"access": "public"
}
}
}

0 comments on commit dbdc850

Please sign in to comment.