Skip to content

Commit 101e50d

Browse files
committed
update deps
1 parent 9bf8d8b commit 101e50d

File tree

3 files changed

+249
-3
lines changed

3 files changed

+249
-3
lines changed

package-lock.json

Lines changed: 241 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@
1212
"dist/"
1313
],
1414
"scripts": {
15-
"build": "npx tsc && cp -r ts-lsp-client-dist dist/",
15+
"build": "npx tsc && npm run copy-deps",
16+
"copy-deps": "npm run copy-lsp-client && npm run copy-ocaml",
17+
"copy-lsp-client": "shx cp -r ts-lsp-client-dist dist/",
18+
"copy-ocaml": "shx mkdir -p dist/src/ocaml-utils/ && shx cp -r src/ocaml-utils/_build dist/src/ocaml-utils/_build/",
1619
"test": "echo \"Error: no test specified\" && exit 1"
1720
},
1821
"author": "",
@@ -21,6 +24,7 @@
2124
"json-rpc-2.0": "^1.7.0",
2225
"openai": "^4.30.0",
2326
"pino": "^9.3.1",
27+
"shx": "^0.3.4",
2428
"ts-node": "^10.9.2",
2529
"tslib": "^2.6.3"
2630
},

tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
"paths": {
3030
"../ts-lsp-client-dist/*": [
3131
"./ts-lsp-client-dist/*"
32+
],
33+
"../src/ocaml-utils/*": [
34+
"./src/ocaml-utils/*"
3235
]
3336
}, /* Specify a set of entries that re-map imports to additional lookup locations. */
3437
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */

0 commit comments

Comments
 (0)