Skip to content

Commit e4d78b2

Browse files
authored
Rm "old dune process". It will not be missed (#366)
* Rm "old dune process". It will not be missed I've had it disabled in tests, but enabled by default, which was in hindsight probably not the best. I meant to remove it very soon after adding it, just as a compatability measure. It should have been removed long ago. * fix esy lock * lock to 4.8 * windows skip
1 parent e007b2d commit e4d78b2

File tree

40 files changed

+1864
-132
lines changed

40 files changed

+1864
-132
lines changed

editor-extensions/coc.nvim/package.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,6 @@
9797
"type": "boolean",
9898
"default": true,
9999
"description": "Enables autorun of bsb"
100-
},
101-
"reason_language_server.useOldDuneProcess": {
102-
"type": "boolean",
103-
"default": true,
104-
"description": "Keep the old process for determining package files (for compatability, will remove soon)"
105100
}
106101
}
107102
}

editor-extensions/vscode/package.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "IDE & Syntax support for Reason/OCaml",
44
"author": "Jared Forsyth",
55
"license": "ISC",
6-
"version": "1.7.3",
6+
"version": "1.7.4",
77
"publisher": "jaredly",
88
"repository": {
99
"type": "git",
@@ -117,11 +117,6 @@
117117
"type": "boolean",
118118
"default": true,
119119
"description": "Enables autorun of bsb"
120-
},
121-
"reason_language_server.useOldDuneProcess": {
122-
"type": "boolean",
123-
"default": true,
124-
"description": "Keep the old process for determining package files (for compatability, will remove soon)"
125120
}
126121
}
127122
},

examples/dune/both/A.re

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
let x = 1
2+
let b = B.x
3+
print_endline(string_of_int(b))

examples/dune/both/B.re

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
let x = 1

examples/dune/both/dune

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
(executable (public_name A) (name A))

examples/dune/dune-example.opam

Whitespace-only changes.

examples/dune/dune-project

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
(lang dune 1.8)
2+
(name dune-example)

examples/dune/esy.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"name": "dune-example",
3+
"esy": {
4+
"build": "dune build -p #{self.name}",
5+
"buildsInSource": "_build"
6+
},
7+
"dependencies": {
8+
"@opam/dune": "*",
9+
"ocaml": "~4.8",
10+
"rex-json": "jaredly/rex-json#esy",
11+
"@esy-ocaml/reason": "*"
12+
}
13+
}

examples/dune/esy.lock/.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
# Set eol to LF so files aren't converted to CRLF-eol on Windows.
3+
* text eol=lf

examples/dune/esy.lock/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
# Reset any possible .gitignore, we want all esy.lock to be un-ignored.
3+
!*

0 commit comments

Comments
 (0)