mirror of
https://github.com/enso-org/enso.git
synced 2024-11-23 16:18:23 +03:00
8597de1d43
- Significantly flattens directory structure of `lib/dashboard/` # Important Notes - Basic testing done on: - dashboard's `npm run dev` which (since quite recently) uses Vite. - specifically: `npm run dev` in `app/ide-desktop/lib/dashboard`, OR `npm run dashboard:dev` in `app/ide-desktop` - dashboard's bundle script (`npm run build`) which uses ESBuild. - GUI2's own entry point (GUI2's `npm run dev`). - `./run ide build` - `./run ide watch` - `./run ide2 build` - `./run gui watch`
29 lines
666 B
JSON
29 lines
666 B
JSON
{
|
|
"devDependencies": {
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^3.0.0"
|
|
},
|
|
"dependencies": {
|
|
"chromedriver": "^106.0.1",
|
|
"tslib": "^2.6.2"
|
|
},
|
|
"name": "root",
|
|
"scripts": {
|
|
"format": "prettier --write .",
|
|
"prettier": "prettier --check .",
|
|
"lint": "npm --workspaces --if-present run lint",
|
|
"test": "npm --workspaces --if-present run test",
|
|
"typecheck": "npm --workspaces --if-present run typecheck",
|
|
"ci-check": "run-p test prettier lint typecheck"
|
|
},
|
|
"workspaces": [
|
|
"app/ide-desktop",
|
|
"app/ide-desktop/lib/*",
|
|
"app/gui2",
|
|
"lib/rust/ensogl/pack/js"
|
|
],
|
|
"overrides": {
|
|
"tslib": "$tslib"
|
|
}
|
|
}
|