-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmoon.yml
More file actions
52 lines (48 loc) · 928 Bytes
/
moon.yml
File metadata and controls
52 lines (48 loc) · 928 Bytes
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
language: "typescript"
stack: "frontend"
layer: "application"
dependsOn:
- "wasm"
tasks:
dev:
command: "pnpm nuxt dev"
deps:
- "wasm:build-dev"
options:
runInCI: false
build:
command: "pnpm nuxt build"
deps:
- "wasm:build"
env:
NODE_OPTIONS: "--max-old-space-size=8192"
inputs:
- "app/**/*"
- "server/**/*"
- "modules/**/*"
- "shared/**/*"
- "i18n/**/*"
- "public/**/*"
- "nuxt.config.ts"
- "uno.config.ts"
- "tsconfig.json"
- "wrangler.toml"
- "package.json"
- "pnpm-lock.yaml"
- "$NUXT_*"
- "$TAURI_*"
- "project://wasm"
outputs:
- ".output/**/*"
generate:
command: "pnpm nuxt generate"
deps:
- "wasm:build"
outputs:
- ".output/**/*"
preview:
command: "pnpm nuxt preview"
deps:
- "build"
options:
runInCI: false