mirror of
https://github.com/enso-org/enso.git
synced 2024-11-23 16:18:23 +03:00
37d820c764
- Fixes #6168 - Removes `enso-copy-plugin` in favor of an inline plugin - It was only used in one place anyway - It is probably necessary since I've "fixed" it by adding all files as entrypoints (I'm not quite sure why it wasn't working with the fix with `enso-copy-plugin`...) - Adds live reload (back) to `content/` # Important Notes To QA: Mandatory: - `./run gui watch --skip-version-check --skip-wasm-opt` Recommended: - `npm run watch-dashboard` - `./run ide watch --skip-version-check --skip-wasm-opt --backend-source release --backend-release latest` - and with `--ide-option -authentication` - `./run ide build --skip-version-check --skip-wasm-opt --backend-source release --backend-release latest` - `Enso` and `Enso -authentication`
41 lines
1010 B
JSON
41 lines
1010 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/dashboard",
|
|
"lib/dashboard/src/authentication",
|
|
"lib/content-config",
|
|
"lib/esbuild-plugin-copy-directories",
|
|
"lib/icons"
|
|
],
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^5.55.0",
|
|
"@typescript-eslint/parser": "^5.55.0",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^8.36.0",
|
|
"eslint-plugin-jsdoc": "^40.0.2"
|
|
},
|
|
"scripts": {
|
|
"watch": "npm run watch --workspace enso-content",
|
|
"watch-dashboard": "npm run watch --workspace enso-dashboard",
|
|
"build-dashboard": "npm run build --workspace enso-dashboard"
|
|
}
|
|
}
|