Skip to content

Commit 3cc81d0

Browse files
committed
Tweak install flow as it seems to be broken
1 parent 488a80f commit 3cc81d0

File tree

5 files changed

+15
-13
lines changed

5 files changed

+15
-13
lines changed

Analyser/package.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@
55
"author": "Blake Loring <[email protected]>, Johannes Kinder <[email protected]>",
66
"readme": "README.md",
77
"dependencies": {
8-
"jalangi2": "git+https://github.com/ExpoSEJS/jalangi2.git#73c952258383a3d768a5bb8253cd4396468d7d53"
8+
"jalangi2": "git+https://github.com/ExpoSEJS/jalangi2.git#73c952258383a3d768a5bb8253cd4396468d7d53",
9+
"browserify": "^14.1.0",
10+
"@babel/cli": "^7.4.4",
11+
"@babel/core": "^7.4.5",
12+
"@babel/preset-env": "^7.4.5",
13+
"babel-plugin-strip-function-call": "^1.0.2",
14+
"babel-preset-2017": "0.0.0"
915
},
1016
"scripts": {
1117
"postinstall": "./scripts/postinstall"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Requires `node` version v14.16.1 (other versions may work but are not tested), `
1111

1212
### Installation
1313

14-
Execute `npm install` inside the ExpoSE directory for a clean installation.
14+
Execute `./install' inside the ExpoSE directory for a clean installation.
1515

1616
### ExpoSE GUI
1717

install

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/usr/bin/env bash
2+
./scripts/setup/setup

package.json

+2-11
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,9 @@
99
},
1010
"scripts": {
1111
"start": "./expoSE ui",
12-
"test": "./scripts/run_tests",
13-
"postinstall": "./scripts/setup/setup"
14-
},
15-
"dependencies": {
16-
"browserify": "^14.1.0",
17-
"@babel/cli": "^7.4.4",
18-
"@babel/core": "^7.4.5",
19-
"@babel/preset-env": "^7.4.5",
20-
"babel-plugin-strip-function-call": "^1.0.2",
21-
"babel-preset-2017": "0.0.0",
22-
"bash": "0.0.1"
12+
"test": "./scripts/run_tests"
2313
},
14+
"dependencies": {},
2415
"devDependencies": {
2516
"eslint": "^5.6.0"
2617
}

scripts/setup/setup

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
echo "Setting up for Node"
44
node --version
55

6+
echo "Installing top level"
7+
npm install
8+
69
echo "Setting Up Packages"
710
./scripts/setup/setup_packages
811

0 commit comments

Comments
 (0)