We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 887875c + 90aeee0 commit 7bba47eCopy full SHA for 7bba47e
3 files changed
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+# Web3API 0.0.1-prealpha.15
2
+## Bugs
3
+* Fix `extractPluginConfigs.ts` output.
4
+
5
# Web3API 0.0.1-prealpha.14
6
## Features
7
* Network Specific ENS Lookup
VERSION
@@ -1 +1 @@
-0.0.1-prealpha.14
+0.0.1-prealpha.15
packages/js/client/scripts/extractPluginConfigs.ts
@@ -102,7 +102,7 @@ function main(): void {
102
103
for (const pluginType of file.types || []) {
104
const typ = sourceFile.getTypeAliasOrThrow(pluginType);
105
- output += `\n\n${typ.print().replace("declare ", "")}`;
+ output += `\n\n${typ.print().replace("declare ", "").replace(/ /g, " ")}`;
106
}
107
108
0 commit comments