Skip to content

Commit cf2b206

Browse files
author
Eric Lange
committed
Reolve issue #155 - disable minifier by default
Bumped version to 0.7.3 Use exactly metro version 0.57
1 parent 4b8d6cd commit cf2b206

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

lib/bundle.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,10 @@ async function bundler(override) {
6060
}
6161

6262
let files = []
63-
let bundler_options = {}
63+
let bundler_options = {
64+
// Issue #155: disable by default
65+
"minify" : false
66+
}
6467
let from_pkgjson = false
6568
if (override._.length < 2) {
6669
let pkgjson = JSON.parse(fs.readFileSync(path.resolve('.', 'package.json')))

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "liquidcore",
3-
"version": "0.7.2",
3+
"version": "0.7.3",
44
"description": "LiquidCore enables Node.js virtual machines to run inside Android and iOS apps. It provides a complete runtime environment, including a virtual file system.",
55
"main": "index.js",
66
"scripts": {
@@ -56,8 +56,8 @@
5656
},
5757
"dependencies": {
5858
"filecompare": "^1.0.4",
59-
"metro": "^0.57.0",
60-
"metro-core": "^0.57.0",
59+
"metro": "0.57.0",
60+
"metro-core": "0.57.0",
6161
"tmp": "^0.1.0"
6262
}
6363
}

0 commit comments

Comments
 (0)