Skip to content

Commit

Permalink
Reolve issue #155 - disable minifier by default
Browse files Browse the repository at this point in the history
Bumped version to 0.7.3
Use exactly metro version 0.57
  • Loading branch information
ericwlange committed Mar 29, 2020
1 parent 4b8d6cd commit cf2b206
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion lib/bundle.js
Expand Up @@ -60,7 +60,10 @@ async function bundler(override) {
}

let files = []
let bundler_options = {}
let bundler_options = {
// Issue #155: disable by default
"minify" : false
}
let from_pkgjson = false
if (override._.length < 2) {
let pkgjson = JSON.parse(fs.readFileSync(path.resolve('.', 'package.json')))
Expand Down
6 changes: 3 additions & 3 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "liquidcore",
"version": "0.7.2",
"version": "0.7.3",
"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.",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -56,8 +56,8 @@
},
"dependencies": {
"filecompare": "^1.0.4",
"metro": "^0.57.0",
"metro-core": "^0.57.0",
"metro": "0.57.0",
"metro-core": "0.57.0",
"tmp": "^0.1.0"
}
}

0 comments on commit cf2b206

Please sign in to comment.