Skip to content

Commit f9eed4c

Browse files
committedFeb 23, 2023
Add UMD output to dist builds (#3814).
1 parent 981a962 commit f9eed4c

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed
 

‎package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
"url": "https://www.buymeacoffee.com/ricmoo"
106106
}
107107
],
108-
"gitHead": "b39e955eb6bd6cbea0c1382e600d6981b4ea14f4",
108+
"gitHead": "981a962543809345c9d38e196a1edc454fdce983",
109109
"homepage": "https://ethers.org",
110110
"keywords": [
111111
"ethereum",
@@ -126,8 +126,8 @@
126126
},
127127
"scripts": {
128128
"_build-clean": "npm run clean && node lib.esm/_admin/update-version-const && npm run build-all && npm run _build-dist",
129-
"_build-dist": "rollup -c && uglifyjs ./dist/ethers.js -o ./dist/ethers.min.js && uglifyjs ./dist/wordlists-extra.js -o ./dist/wordlists-extra.min.js && cp ./output/post-build/dist/* ./dist/",
130-
"_dist-stats": "gzip -k9f -S '.gz' ./dist/ethers.min.js && gzip -k9f -S '.gz' ./dist/wordlists-extra.min.js && du -hs ./dist/*.gz && echo '' && du -hs ./dist/*.js",
129+
"_build-dist": "rollup -c && uglifyjs ./dist/ethers.js -o ./dist/ethers.min.js && uglifyjs ./dist/ethers.umd.js -o ./dist/ethers.umd.min.js && uglifyjs ./dist/wordlists-extra.js -o ./dist/wordlists-extra.min.js && cp ./output/post-build/dist/* ./dist/",
130+
"_dist-stats": "gzip -k9f -S '.gz' ./dist/ethers.min.js && gzip -k9f -S '.gz' ./dist/ethers.umd.min.js && gzip -k9f -S '.gz' ./dist/wordlists-extra.min.js && du -hs ./dist/*.gz && echo '' && du -hs ./dist/*.js",
131131
"auto-build": "npm run build -- -w",
132132
"build": "tsc --project tsconfig.esm.json",
133133
"build-all": "npm run build && cp ./output/post-build/lib.esm/* ./lib.esm/ && npm run build-commonjs && npm run build-types",
@@ -146,5 +146,5 @@
146146
"sideEffects": false,
147147
"type": "module",
148148
"types": "./types/index.d.ts",
149-
"version": "6.0.5"
149+
"version": "6.0.6"
150150
}

‎rollup.config.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ function getConfig(opts) {
1313
input: "./lib.esm/index.js",
1414
output: {
1515
file,
16-
format: "esm",
16+
name: (opts.name || undefined),
17+
format: (opts.format || "esm"),
1718
sourcemap: true
1819
},
1920
context: "window",
@@ -29,6 +30,7 @@ function getConfig(opts) {
2930

3031
export default [
3132
getConfig({ browser: true }),
33+
getConfig({ browser: true, suffix: ".umd", format: "umd", name: "ethers" }),
3234
{
3335
input: "./lib.esm/wordlists/wordlists-extra.js",
3436
output: {

0 commit comments

Comments
 (0)