From 2c053b3a38656ec9dc950bea7cd750009b9b437b Mon Sep 17 00:00:00 2001 From: Andrei Borza Date: Thu, 11 Jul 2024 12:14:58 +0200 Subject: [PATCH] Add eslintignore --- biome.json | 4 +++- .../e2e-tests/test-applications/solidstart/README.md | 9 ++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/biome.json b/biome.json index ccb69e4746db..cee069ac3127 100644 --- a/biome.json +++ b/biome.json @@ -43,7 +43,9 @@ ".angular/**", "angular.json", "ember/instance-initializers/**", - "ember/types.d.ts" + "ember/types.d.ts", + ".output", + ".vinxi" ] }, "files": { diff --git a/dev-packages/e2e-tests/test-applications/solidstart/README.md b/dev-packages/e2e-tests/test-applications/solidstart/README.md index 148dccaa7f6f..9a141e9c2f0d 100644 --- a/dev-packages/e2e-tests/test-applications/solidstart/README.md +++ b/dev-packages/e2e-tests/test-applications/solidstart/README.md @@ -14,7 +14,8 @@ npm init solid@latest my-app ## Developing -Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server: +Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a +development server: ```bash npm run dev @@ -27,11 +28,13 @@ npm run dev -- --open Solid apps are built with _presets_, which optimise your project for deployment to different environments. -By default, `npm run build` will generate a Node app that you can run with `npm start`. To use a different preset, add it to the `devDependencies` in `package.json` and specify in your `app.config.js`. +By default, `npm run build` will generate a Node app that you can run with `npm start`. To use a different preset, add +it to the `devDependencies` in `package.json` and specify in your `app.config.js`. ## Testing -Tests are written with `vitest`, `@solidjs/testing-library` and `@testing-library/jest-dom` to extend expect with some helpful custom matchers. +Tests are written with `vitest`, `@solidjs/testing-library` and `@testing-library/jest-dom` to extend expect with some +helpful custom matchers. To run them, simply start: