Update src/virtual-machine.js
Browse files- src/virtual-machine.js +0 -1
src/virtual-machine.js
CHANGED
|
@@ -518,7 +518,6 @@ class VirtualMachine extends EventEmitter {
|
|
| 518 |
const proj = zip.file('project.json');
|
| 519 |
if (!proj) return reject('No project.json file inside the given project');
|
| 520 |
const json = JSON.parse(await proj.async('string'));
|
| 521 |
-
delete json.meta;
|
| 522 |
json.projectVersion = this.isSB2(json) ? 2 : 3;
|
| 523 |
|
| 524 |
this._projectZip = zip
|
|
|
|
| 518 |
const proj = zip.file('project.json');
|
| 519 |
if (!proj) return reject('No project.json file inside the given project');
|
| 520 |
const json = JSON.parse(await proj.async('string'));
|
|
|
|
| 521 |
json.projectVersion = this.isSB2(json) ? 2 : 3;
|
| 522 |
|
| 523 |
this._projectZip = zip
|