Skip to content

Commit

Permalink
build: adds missing cjs min files
Browse files Browse the repository at this point in the history
  • Loading branch information
mathewmeconry committed Nov 22, 2023
1 parent 6e45f8b commit 24e7589
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 1 deletion.
4 changes: 4 additions & 0 deletions modules/client-common/rollup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ export default {
dir: "dist",
format: "cjs",
sourcemap: true,
}, {
file: "dist/sdk-client-common.cjs.production.min.js",
format: "cjs",
sourcemap: true,
}, {
file: "dist/sdk-client-common.esm.js",
format: "esm",
Expand Down
1 change: 1 addition & 0 deletions modules/client-common/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ export * from "./multiuri";
export * from "./encoding";
export * from "./promises";
export * from "./errors";
console.log("SDK COMMON LINKED")
4 changes: 4 additions & 0 deletions modules/client/rollup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ export default {
dir: "dist",
format: "cjs",
sourcemap: true,
}, {
file: "dist/sdk-client.cjs.production.min.js",
format: "cjs",
sourcemap: true,
}, {
file: "dist/sdk-client.esm.js",
format: "esm",
Expand Down
2 changes: 1 addition & 1 deletion modules/client/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export * from "./tokenVoting";
export * from "./client-common";
export * from "./multisig";
export * from "./types";

console.log("SDK LINKED")
// Selective reexports for completeness
export {
ApplyInstallationParams,
Expand Down
4 changes: 4 additions & 0 deletions modules/common/rollup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ export default {
dir: "dist",
format: "cjs",
sourcemap: true,
}, {
file: "dist/sdk-common.cjs.production.min.js",
format: "cjs",
sourcemap: true,
}, {
file: "dist/sdk-common.esm.js",
format: "esm",
Expand Down

0 comments on commit 24e7589

Please sign in to comment.