You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
m3u8-downloader-TypeScript/packages/mobile
dependabot[bot] a8ca266ad5
build(deps-dev): bump typescript from 5.1.6 to 5.3.3
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.1.6 to 5.3.3.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](https://github.com/Microsoft/TypeScript/compare/v5.1.6...v5.3.3)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
1 year ago
..
e2e feat: prettier & web extension. 2 years ago
public feat: add mobile player. 2 years ago
src release size. 2 years ago
.eslintrc.cjs feat: prettier & web extension. 2 years ago
.gitignore feat: add mobile player. 2 years ago
.prettierrc.json feat: prettier & web extension. 2 years ago
README.md feat: prettier & web extension. 2 years ago
components.d.ts pack 2 years ago
env.d.ts docs: support dark mode. 2 years ago
index.html add plugin 1 year ago
package.json build(deps-dev): bump typescript from 5.1.6 to 5.3.3 1 year ago
playwright.config.ts feat: prettier & web extension. 2 years ago
tsconfig.app.json feat: add mobile player. 2 years ago
tsconfig.json feat: add mobile player. 2 years ago
tsconfig.node.json feat: prettier & web extension. 2 years ago
tsconfig.vitest.json feat: add mobile player. 2 years ago
vite.config.ts release size. 2 years ago
vitest.config.ts feat: prettier & web extension. 2 years ago

README.md

mobile-player

This template should help get you started developing with Vue 3 in Vite.

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:

  1. Disable the built-in TypeScript Extension
    1. Run Extensions: Show Built-in Extensions from VSCode's command palette
    2. Find TypeScript and JavaScript Language Features, right click and select Disable (Workspace)
  2. 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