-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathmise.toml
More file actions
53 lines (41 loc) · 1.09 KB
/
mise.toml
File metadata and controls
53 lines (41 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[tools]
node = "lts"
pnpm = "latest"
[hooks]
postinstall = 'npx corepack enable'
[env]
_.path = ['./node_modules/.bin']
[tasks.pnpm-install]
description = 'Installs dependencies with pnpm'
run = 'pnpm install'
sources = ['package.json', 'pnpm-lock.yaml', 'mise.toml']
outputs = ['node_modules/.pnpm/lock.yaml']
[tasks.build]
run = 'pnpm run build'
depends = ['pnpm-install']
[tasks.dev]
run = 'pnpm run dev'
description = "Starts development watch mode"
depends = ['pnpm-install']
[tasks."dev:site"]
run = 'pnpm run dev:site'
description = "Starts the site in dev mode"
depends = ['pnpm-install']
[tasks."build:site"]
run = 'pnpm run build:site'
description = "Builds the site"
depends = ['pnpm-install']
[tasks.update]
run = 'pnpm update --latest --interactive'
[tasks.test]
run = 'pnpm run test'
depends = ['pnpm-install']
[tasks.playwright-install]
run = 'pnpm exec playwright install'
description = 'Installs playwright browsers'
[tasks."test:e2e"]
run = 'pnpm run test:e2e'
depends = ['pnpm-install', 'playwright-install']
[tasks.release]
run = 'pnpm run release'
description = "Release a new version"