Skip to content

Commit e13d6bc

Browse files
committedApr 27, 2021
Install analysis/tests deps in top level command; move RR to devDep
1 parent 2bd7e38 commit e13d6bc

File tree

4 files changed

+24
-4
lines changed

4 files changed

+24
-4
lines changed
 

‎CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Thanks for your interest. Below is an informal spec of how the plugin's server c
3535

3636
## Test
3737

38-
- Open VS Code to this folder.
38+
- Open VS Code to the project root.
3939
- Switch to the Debug viewlet (command palette -> View: Show Run and Debug).
4040
- Select `Client + Server` from the drop down, launch it (green arrow):
4141

‎analysis/tests/package-lock.json

+19-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎analysis/tests/package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
{
22
"scripts": {},
33
"dependencies": {
4-
"@rescript/react": "^0.10.2",
54
"rescript": "^9.1.1"
5+
},
6+
"devDependencies": {
7+
"@rescript/react": "^0.10.2"
68
}
79
}

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
"vscode:prepublish": "npm run clean && npm run compile",
104104
"compile": "tsc -b",
105105
"watch": "tsc -b -w",
106-
"postinstall": "cd server && npm install"
106+
"postinstall": "cd server && npm install && cd ../analysis/tests && npm install"
107107
},
108108
"devDependencies": {
109109
"@types/node": "^14.14.41",

0 commit comments

Comments
 (0)
Please sign in to comment.