Skip to content
This repository was archived by the owner on Apr 24, 2021. It is now read-only.

Upgrade test npm deps lockfile to version 2 #142

Merged
merged 1 commit into from
Apr 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 37 additions & 6 deletions test/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions test/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"dependencies": {
"reason-react": "^0.9.1",
"rescript": "9.1.0"
"reason-react": "^0.9.1"
},
"devDependencies": {
"rescript": "9.1.1"
},
"scripts": {
"build": "bsb -make-world",
Expand Down
4 changes: 2 additions & 2 deletions test/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ function exp {
echo "$(dirname $1)/expected/$(basename $1).txt"
}

./node_modules/.bin/rescript build
./node_modules/.bin/rescript
for file in src/**/*.res; do
../_build/install/default/bin/rescript-editor-support.exe test $file &> $(exp $file)
../lib/rescript-editor-support.exe test $file &> $(exp $file)
done