Skip to content

Commit 7bba47e

Browse files
authored
Merge pull request #276 from Web3-API/prealpha-dev
Prep 0.0.1-prealpha.15
2 parents 887875c + 90aeee0 commit 7bba47e

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Web3API 0.0.1-prealpha.15
2+
## Bugs
3+
* Fix `extractPluginConfigs.ts` output.
4+
15
# Web3API 0.0.1-prealpha.14
26
## Features
37
* Network Specific ENS Lookup

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.1-prealpha.14
1+
0.0.1-prealpha.15

packages/js/client/scripts/extractPluginConfigs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ function main(): void {
102102

103103
for (const pluginType of file.types || []) {
104104
const typ = sourceFile.getTypeAliasOrThrow(pluginType);
105-
output += `\n\n${typ.print().replace("declare ", "")}`;
105+
output += `\n\n${typ.print().replace("declare ", "").replace(/ /g, " ")}`;
106106
}
107107
}
108108

0 commit comments

Comments
 (0)