-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 1.4 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
{
"name": "treease",
"private": true,
"scripts": {
"docs:list": "node ./scripts/docs-list.mjs",
"dev": "pnpm --dir apps/web dev",
"bump:version": "node ./scripts/bump-version.mjs",
"hooks:install": "git config core.hooksPath .githooks",
"core:test": "node -e \"console.log('If this hangs, see https://github.com/nextest-rs/nextest/issues/1161')\" && cd packages/core && cargo nextest run --locked",
"test:e2e:core": "pnpm --dir apps/web test:e2e:core",
"test:core:full": "cd packages/core && ./test.sh all",
"test:full": "node scripts/test-full.mjs",
"test:coverage:core": "cargo llvm-cov nextest --manifest-path packages/core/Cargo.toml --locked --html --output-dir coverage/core",
"test:coverage:e2e": "pnpm --dir apps/web test:e2e:coverage",
"web:test": "pnpm --dir apps/web test",
"web:assets:deploy": "pnpm --dir apps/web assets:r2:sync",
"web:workers:deploy": "pnpm --dir apps/web deploy:workers",
"cli:build:release": "cd apps/cli && cargo build --locked --release",
"cli:publish": "cd apps/cli && cargo publish --locked",
"check:docs": "node ./scripts/check-docs.mjs && pnpm docs:map:check",
"docs:map:gen": "node ./scripts/generate-docs-map.mjs",
"docs:map:check": "node ./scripts/generate-docs-map.mjs --check",
"sitemap:generate": "node ./scripts/generate-sitemap.mjs",
"changelog:generate": "pnpm --dir apps/web content:changelog"
}
}