mirror of
https://github.com/enso-org/enso.git
synced 2024-11-05 03:59:38 +03:00
de9f2764f9
This PR removes enso-pack (ensogl-pack) crate. It still keeps the `enso-runner` JS package, as it is used for CLI argument parser and logger. The runner should be probably refactored (and possible removed altogether). # Important Notes I've temporarily extracted the `enso-runner` to `lib/js` directory, as I wanted to avoid keeping pure JS library under `lib/rust`. Attempts at integrating this with `app/ide-desktop` and family caused too much trouble for this PR. The expectation is that the package will be removed or moved elsewhere soon anyway.
29 lines
656 B
JSON
29 lines
656 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/*",
|
|
"lib/js/runner",
|
|
"app/gui2"
|
|
],
|
|
"overrides": {
|
|
"tslib": "$tslib"
|
|
}
|
|
}
|