-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated dist files (sorted package.json to reduce package version cha…
…nge chatter).
- Loading branch information
Showing
290 changed files
with
1,684 additions
and
1,380 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
const { setupBuild } = require("../build"); | ||
const { loadPackage, savePackage } = require("../local"); | ||
|
||
const arg = process.argv[2]; | ||
|
||
(async function() { | ||
switch(arg) { | ||
case "esm": | ||
setupBuild(true); | ||
break; | ||
|
||
case "cjs": | ||
setupBuild(false); | ||
break; | ||
|
||
case "browser-lang-en": { | ||
const info = loadPackage("wordlists"); | ||
if (info._browser) { | ||
info.browser = info._browser; | ||
delete info._browser; | ||
savePackage("wordlists", info); | ||
} | ||
break; | ||
} | ||
|
||
case "browser-lang-all": { | ||
const info = loadPackage("wordlists"); | ||
if (info.browser) { | ||
info._browser = info.browser; | ||
delete info.browser; | ||
savePackage("wordlists", info); | ||
} | ||
break; | ||
} | ||
|
||
default: | ||
console.log("unknown option"); | ||
return 1; | ||
} | ||
return 0; | ||
|
||
})().then((result) => { | ||
process.exit(result); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export declare const version = "abi/5.0.0-beta.141"; | ||
export declare const version = "abi/5.0.0-beta.142"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export const version = "abi/5.0.0-beta.141"; | ||
export const version = "abi/5.0.0-beta.142"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export declare const version = "abi/5.0.0-beta.141"; | ||
export declare const version = "abi/5.0.0-beta.142"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.version = "abi/5.0.0-beta.141"; | ||
exports.version = "abi/5.0.0-beta.142"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,5 @@ | ||
{ | ||
"name": "@ethersproject/abi", | ||
"version": "5.0.0-beta.141", | ||
"description": "Utilities and Classes for parsing, formatting and managing Ethereum ABIs.", | ||
"main": "./lib/index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"author": "Richard Moore <[email protected]>", | ||
"dependencies": { | ||
"@ethersproject/address": ">=5.0.0-beta.128", | ||
"@ethersproject/bignumber": ">=5.0.0-beta.130", | ||
|
@@ -17,21 +11,27 @@ | |
"@ethersproject/properties": ">=5.0.0-beta.131", | ||
"@ethersproject/strings": ">=5.0.0-beta.130" | ||
}, | ||
"description": "Utilities and Classes for parsing, formatting and managing Ethereum ABIs.", | ||
"ethereum": "donations.ethers.eth", | ||
"keywords": [ | ||
"Ethereum", | ||
"ethers" | ||
], | ||
"author": "Richard Moore <[email protected]>", | ||
"license": "MIT", | ||
"main": "./lib/index.js", | ||
"module": "./lib.esm/index.js", | ||
"name": "@ethersproject/abi", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/ethers-io/ethers.js.git" | ||
}, | ||
"module": "./lib.esm/index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"tarballHash": "0xadfbb4cb8f2b47899564234f2856265474ba5f2530b2658e43ae931b929b4a93", | ||
"types": "./lib/index.d.ts", | ||
"ethereum": "donations.ethers.eth", | ||
"tarballHash": "0x8ab039f54add63e60520103856dcec83107f301a5d712a92cc6207a0ddbf3ffc" | ||
"version": "5.0.0-beta.142" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export const version = "abi/5.0.0-beta.141"; | ||
export const version = "abi/5.0.0-beta.142"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export declare const version = "abstract-provider/5.0.0-beta.134"; | ||
export declare const version = "abstract-provider/5.0.0-beta.135"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export const version = "abstract-provider/5.0.0-beta.134"; | ||
export const version = "abstract-provider/5.0.0-beta.135"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export declare const version = "abstract-provider/5.0.0-beta.134"; | ||
export declare const version = "abstract-provider/5.0.0-beta.135"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.version = "abstract-provider/5.0.0-beta.134"; | ||
exports.version = "abstract-provider/5.0.0-beta.135"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,5 @@ | ||
{ | ||
"name": "@ethersproject/abstract-provider", | ||
"version": "5.0.0-beta.134", | ||
"description": "An Abstract Class for describing an Ethereum Provider for ethers.", | ||
"main": "./lib/index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"author": "Richard Moore <[email protected]>", | ||
"dependencies": { | ||
"@ethersproject/bignumber": ">=5.0.0-beta.130", | ||
"@ethersproject/bytes": ">=5.0.0-beta.129", | ||
|
@@ -15,21 +9,27 @@ | |
"@ethersproject/transactions": ">=5.0.0-beta.128", | ||
"@ethersproject/web": ">=5.0.0-beta.129" | ||
}, | ||
"description": "An Abstract Class for describing an Ethereum Provider for ethers.", | ||
"ethereum": "donations.ethers.eth", | ||
"keywords": [ | ||
"Ethereum", | ||
"ethers" | ||
], | ||
"author": "Richard Moore <[email protected]>", | ||
"license": "MIT", | ||
"main": "./lib/index.js", | ||
"module": "./lib.esm/index.js", | ||
"name": "@ethersproject/abstract-provider", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/ethers-io/ethers.js.git" | ||
}, | ||
"module": "./lib.esm/index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"tarballHash": "0xc5b12b9ba34634fee7767507821dcf075ec7d41a3ce2bcb9bd60eeac30aa9f99", | ||
"types": "./lib/index.d.ts", | ||
"ethereum": "donations.ethers.eth", | ||
"tarballHash": "0x8046905ec7f3ebbe9c3657de9487b1e859a17e2fe71665bc074a9ae682241cf6" | ||
"version": "5.0.0-beta.135" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export const version = "abstract-provider/5.0.0-beta.134"; | ||
export const version = "abstract-provider/5.0.0-beta.135"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export declare const version = "abstract-signer/5.0.0-beta.136"; | ||
export declare const version = "abstract-signer/5.0.0-beta.137"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export const version = "abstract-signer/5.0.0-beta.136"; | ||
export const version = "abstract-signer/5.0.0-beta.137"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export declare const version = "abstract-signer/5.0.0-beta.136"; | ||
export declare const version = "abstract-signer/5.0.0-beta.137"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.version = "abstract-signer/5.0.0-beta.136"; | ||
exports.version = "abstract-signer/5.0.0-beta.137"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
{ | ||
"name": "@ethersproject/abstract-signer", | ||
"version": "5.0.0-beta.136", | ||
"description": "An Abstract Class for desribing an Ethereum Signer for ethers.", | ||
"main": "./lib/index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"author": "Richard Moore <[email protected]>", | ||
"dependencies": { | ||
"@ethersproject/abstract-provider": ">=5.0.0-beta.131", | ||
"@ethersproject/bignumber": ">=5.0.0-beta.130", | ||
"@ethersproject/bytes": ">=5.0.0-beta.129", | ||
"@ethersproject/logger": ">=5.0.0-beta.129", | ||
"@ethersproject/properties": ">=5.0.0-beta.131" | ||
}, | ||
"description": "An Abstract Class for desribing an Ethereum Signer for ethers.", | ||
"ethereum": "donations.ethers.eth", | ||
"keywords": [ | ||
"Ethereum", | ||
"ethers" | ||
], | ||
"author": "Richard Moore <[email protected]>", | ||
"license": "MIT", | ||
"main": "./lib/index.js", | ||
"module": "./lib.esm/index.js", | ||
"name": "@ethersproject/abstract-signer", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/ethers-io/ethers.js.git" | ||
}, | ||
"module": "./lib.esm/index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"tarballHash": "0x715e7c449f450ad4bf5db8da4e27d7b86a9eebeb911eab63a913791dcbe4f6e9", | ||
"types": "./lib/index.d.ts", | ||
"ethereum": "donations.ethers.eth", | ||
"tarballHash": "0xb15621c33c076e145b49f77d1fb608f584ae52db026ba52673102eed4bdff2e9" | ||
"version": "5.0.0-beta.137" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export const version = "abstract-signer/5.0.0-beta.136"; | ||
export const version = "abstract-signer/5.0.0-beta.137"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export declare const version = "address/5.0.0-beta.132"; | ||
export declare const version = "address/5.0.0-beta.133"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export const version = "address/5.0.0-beta.132"; | ||
export const version = "address/5.0.0-beta.133"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export declare const version = "address/5.0.0-beta.132"; | ||
export declare const version = "address/5.0.0-beta.133"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.version = "address/5.0.0-beta.132"; | ||
exports.version = "address/5.0.0-beta.133"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,5 @@ | ||
{ | ||
"name": "@ethersproject/address", | ||
"version": "5.0.0-beta.132", | ||
"description": "Utilities for handling Ethereum Addresses for ethers.", | ||
"main": "./lib/index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"author": "Richard Moore <[email protected]>", | ||
"dependencies": { | ||
"@ethersproject/bignumber": ">=5.0.0-beta.130", | ||
"@ethersproject/bytes": ">=5.0.0-beta.129", | ||
|
@@ -14,21 +8,27 @@ | |
"@ethersproject/rlp": ">=5.0.0-beta.126", | ||
"bn.js": "^4.4.0" | ||
}, | ||
"description": "Utilities for handling Ethereum Addresses for ethers.", | ||
"ethereum": "donations.ethers.eth", | ||
"keywords": [ | ||
"Ethereum", | ||
"ethers" | ||
], | ||
"author": "Richard Moore <[email protected]>", | ||
"license": "MIT", | ||
"main": "./lib/index.js", | ||
"module": "./lib.esm/index.js", | ||
"name": "@ethersproject/address", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/ethers-io/ethers.js.git" | ||
}, | ||
"module": "./lib.esm/index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"tarballHash": "0x42fd431912caff42462eff8a503ff701df38fe1a9b58443d7318613ce45c87c3", | ||
"types": "./lib/index.d.ts", | ||
"ethereum": "donations.ethers.eth", | ||
"tarballHash": "0x525c2a6354d1fb020e134ffa657ab8283c8448da95c2fd8b7e4291a71ced794e" | ||
"version": "5.0.0-beta.133" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export const version = "address/5.0.0-beta.132"; | ||
export const version = "address/5.0.0-beta.133"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export declare const version = "base64/5.0.0-beta.130"; | ||
export declare const version = "base64/5.0.0-beta.131"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export const version = "base64/5.0.0-beta.130"; | ||
export const version = "base64/5.0.0-beta.131"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export declare const version = "base64/5.0.0-beta.130"; | ||
export declare const version = "base64/5.0.0-beta.131"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.version = "base64/5.0.0-beta.130"; | ||
exports.version = "base64/5.0.0-beta.131"; |
Oops, something went wrong.