Skip to content

Commit 06dd77d

Browse files
committed
Re-bump rescript version; simplify makefile
This was done in a1074e1 but lost in a423637 Fixes #126. Since no-op build is cheap, I took the occasion to simplify the makefile incrementalism (which was kinda wrong before too). Gotta love perf + full build.
1 parent e13d6bc commit 06dd77d

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

analysis/Makefile

+2-4
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,8 @@ dce: build-native
3535
tests/node_modules/.bin/rescript:
3636
@cd tests && npm install
3737

38-
tests/lib/.compiler.log: tests/node_modules/.bin/rescript
39-
@cd tests && node_modules/.bin/rescript build -with-deps
40-
41-
test: dce tests/lib/.compiler.log
38+
test: dce tests/node_modules/.bin/rescript
39+
@cd tests && node_modules/.bin/rescript
4240
./test.sh
4341

4442
clean:

analysis/tests/package-lock.json

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

analysis/tests/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"scripts": {},
33
"dependencies": {
4-
"rescript": "^9.1.1"
4+
"rescript": "9.1.1-dev.2"
55
},
66
"devDependencies": {
77
"@rescript/react": "^0.10.2"

0 commit comments

Comments
 (0)