mirror of
https://github.com/enso-org/enso.git
synced 2025-01-03 14:04:44 +03:00
895326d4ed
- Closes #8062 # Important Notes - This PR uses a completely separate implementation from the regexes used for the existing filtering. AFAICT, this is unavoidable, since this needs to retrieve matched text. - I've come across a couple minor bugs related to the Component Browser: - When deleting text (backspacing), the full list of unfiltered entries momentarily reappear because the filtering is reset. - Things like `h.m` match `HTTP_Method` - if this is not intentional, it seems like it might be more difficult to fix, unfortunately. - Note that highlighting (I assume correctly?) *does not* highlight any part of `HTTP_Method`. |
||
---|---|---|
.. | ||
.vscode | ||
e2e | ||
parser-codegen | ||
public | ||
rust-ffi | ||
shared | ||
src | ||
ydoc-server | ||
.gitignore | ||
.prettierignore | ||
.prettierrc.json | ||
env.d.ts | ||
eslint.config.js | ||
index.html | ||
node.env.d.ts | ||
package.json | ||
playwright.config.ts | ||
README.md | ||
tsconfig.app.json | ||
tsconfig.app.vitest.json | ||
tsconfig.json | ||
tsconfig.node.json | ||
tsconfig.server.json | ||
tsconfig.server.vitest.json | ||
vite.config.ts | ||
vitest.config.ts |
enso-ide
This template should help get you started developing with Vue 3 in Vite.
Recommended IDE Setup
VSCode + Volar (and disable Vetur) + TypeScript Vue Plugin (Volar).
Type Support for .vue
Imports in TS
TypeScript cannot handle type information for .vue
imports by default, so we replace the tsc
CLI with vue-tsc
for type checking. In editors, we need TypeScript Vue Plugin (Volar) to make the TypeScript language service aware of .vue
types.
If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a Take Over Mode that is more performant. You can enable it by the following steps:
- Disable the built-in TypeScript Extension
- Run
Extensions: Show Built-in Extensions
from VSCode's command palette - Find
TypeScript and JavaScript Language Features
, right click and selectDisable (Workspace)
- Run
- Reload the VSCode window by running
Developer: Reload Window
from the command palette.
Customize configuration
See Vite Configuration Reference.
Project Setup
npm install
Compile and Hot-Reload for Development
npm run dev
Type-Check, Compile and Minify for Production
npm run build
Run Unit Tests with Vitest
npm run test:unit
Run End-to-End Tests with Playwright
# Install browsers for the first run
npx playwright install
# When testing on CI, must build the project first
npm run build
# Runs the end-to-end tests
npm run test:e2e
# Runs the tests only on Chromium
npm run test:e2e -- --project=chromium
# Runs the tests of a specific file
npm run test:e2e -- tests/example.spec.ts
# Runs the tests in debug mode
npm run test:e2e -- --debug
Lint with ESLint
npm run lint