mirror of
https://github.com/enso-org/enso.git
synced 2024-11-28 07:34:11 +03:00
bd3b778721
This PR replaces webpack with esbuild, as our bundler. The change leads to out-of-the-box ~5x improvement in bundling times, reducing the latency in watch-based workflows. Along with this a new development server (with live reload capacity) has been introduced to support watch command. [ci no changelog needed] ### Important Notes * workflow for checking docs has been removed because it was using outdated prettier version and caused troubles; while the same check is performed in a better way by the GUI/Lint job. * introduced little more typescript in the scripts in place of js, usually with minimal changes.
30 lines
582 B
JSON
30 lines
582 B
JSON
{
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"author": {
|
|
"name": "Enso Team",
|
|
"email": "contact@enso.org"
|
|
},
|
|
"homepage": "https://github.com/enso-org/enso",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:enso-org/enso.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/enso-org/enso/issues"
|
|
},
|
|
"name": "root",
|
|
"private": true,
|
|
"workspaces": [
|
|
"lib/client",
|
|
"lib/common",
|
|
"lib/content",
|
|
"lib/copy-plugin",
|
|
"lib/icons",
|
|
"lib/server"
|
|
],
|
|
"scripts": {
|
|
"watch": "npm run watch --workspace enso-studio-content"
|
|
}
|
|
}
|