Skip to content

Commit 4490b3a

Browse files
author
Florian Lenz
committed
[webpack] fixed missing version of build
1 parent 6d53ede commit 4490b3a

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pangea-cli",
3-
"version": "0.3.1",
3+
"version": "0.3.2",
44
"main": "index.js",
55
"preferGlobal": true,
66
"bin": "./index.js",

src/webpack.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -200,12 +200,7 @@ const watchBundleChanges = (devMode, signingKey, callback, isForceClose) => {
200200
}
201201

202202
if (callback) {
203-
callback(null, {
204-
...dAppMetaData,
205-
used_signing_key: signingKey.public_key,
206-
code: dAppCode,
207-
signature: signedHash.slice(0, 64).toString('hex'),
208-
});
203+
callback(null, dAppContent);
209204
}
210205
})
211206
.catch(callback);

0 commit comments

Comments
 (0)