Skip to content

Commit 00f58a2

Browse files
committed
Chores
Signed-off-by: Sora Morimoto <[email protected]>
1 parent 05e0f8c commit 00f58a2

File tree

7 files changed

+11
-7
lines changed

7 files changed

+11
-7
lines changed

.envrc

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
# shellcheck shell=bash
2+
NODE_VERSIONS="${HOME}/.nvm/versions/node"
3+
NODE_VERSION_PREFIX="v"
4+
use node
25
layout node
36
layout opam

.github/workflows/workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set-up Node.js
1717
uses: actions/setup-node@v4
1818
with:
19-
node-version: lts/*
19+
node-version-file: .nvmrc
2020
- name: Set-up OCaml
2121
uses: ocaml/setup-ocaml@v3
2222
with:

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
22

.ocamlformat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=0.26.2
1+
version=0.27.0
22
profile=conventional
33
break-infix=fit-or-vertical
44
parse-docstrings=true

dune-project

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(lang dune 3.16)
1+
(lang dune 3.17)
22

33
(name example)
44

@@ -26,4 +26,4 @@
2626
(ocamlformat
2727
(and
2828
:with-dev-setup
29-
(= 0.26.2)))))
29+
(= 0.27.0)))))

example.opam

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ license: "ISC"
88
homepage: "https://github.com/ocsigen/ts2ocaml-example"
99
bug-reports: "https://github.com/ocsigen/ts2ocaml-example/issues"
1010
depends: [
11-
"dune" {>= "3.16"}
11+
"dune" {>= "3.17"}
1212
"ts2ocaml-jsoo-stdlib"
1313
"ojs"
1414
"gen_js_api"
1515
"js_of_ocaml-compiler"
1616
"ocaml-lsp-server" {with-dev-setup}
17-
"ocamlformat" {with-dev-setup & = "0.26.2"}
17+
"ocamlformat" {with-dev-setup & = "0.27.0"}
1818
"odoc" {with-doc}
1919
]
2020
build: [

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
"@ocsigen/ts2ocaml": "2.0.0-beta.3",
1212
"esbuild": "0.24.0"
1313
},
14-
"packageManager": "[email protected].1"
14+
"packageManager": "[email protected].3"
1515
}

0 commit comments

Comments
 (0)