mirror of
https://github.com/enso-org/enso.git
synced 2024-11-29 05:16:24 +03:00
4d2cc04e17
Fixed occasional issues with ydoc server starting in dev mode, which were caused by missing dist file, then nodemon failing to trigger a file watch event after esbuild completion. Now esbuild is directly responsible for managing a child process, without needing an additional layer of file watchers.
26 lines
554 B
JSON
26 lines
554 B
JSON
{
|
|
"version": "0.1.0",
|
|
"name": "ydoc-server-polyglot",
|
|
"private": true,
|
|
"type": "commonjs",
|
|
"author": {
|
|
"name": "Enso Team",
|
|
"email": "contact@enso.org"
|
|
},
|
|
"main": "./dist/main.js",
|
|
"scripts": {
|
|
"compile": "node ./build.mjs build",
|
|
"start": "node ./dist/main.cjs",
|
|
"dev:watch": "node ./build.mjs watch"
|
|
},
|
|
"dependencies": {
|
|
"ydoc-shared": "workspace:*",
|
|
"ydoc-server": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"esbuild-plugin-wasm": "^1.1.0",
|
|
"esbuild": "^0.23.0",
|
|
"typescript": "^5.5.3"
|
|
}
|
|
}
|