Skip to content

Commit a1246e6

Browse files
authored
ReScript support (#64)
* esy 0.6.7 * Revert to OCaml 4.06. * Add ReScript support * Set version to 0.10.0 and include ReScript commit hash in version string.
1 parent 6af44c9 commit a1246e6

File tree

54 files changed

+1588
-343
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+1588
-343
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,15 @@ jobs:
2222
uses: actions/setup-node@v1
2323
with:
2424
node-version: ${{ matrix.node-version }}
25-
- name: Checkout
25+
26+
- name: Checkout repository
2627
uses: actions/checkout@v2
2728

29+
- name: Checkout submodules
30+
run: git submodule update --init --recursive
31+
2832
- name: Install esy
29-
run: npm i -g esy@0.6.4
33+
run: npm i -g esy@0.6.7
3034

3135
- name: Restore esy install cache
3236
uses: actions/cache@v1

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "rescript_parser/syntax"]
2+
path = rescript_parser/syntax
3+
url = https://github.com/rescript-lang/syntax.git

bin/Version.re

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
let version = "0.9.1";
1+
// *** GENERATED BY "yarn setVersion" ***
2+
3+
let version = "0.10.0 (ReScript 7cc70c9)";

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ RUN apt-get update \
44
&& DEBIAN_FRONTEND=noninteractive apt-get install -y nodejs npm git rsync m4 curl zip \
55
&& rm -rf /var/lib/apt/lists/*
66

7-
RUN npm i -g esy@0.6.4
7+
RUN npm i -g esy@0.6.7

0 commit comments

Comments
 (0)