|
10 | 10 | "build": { |
11 | 11 | "description": "Build the app for production.", |
12 | 12 | "command": "deno run -A ./build/esbuild.ts", |
13 | | - "dependencies": ["clear-dist"] |
| 13 | + "dependencies": ["clear-dist"] |
14 | 14 | }, |
15 | 15 | "build:watch": { |
16 | 16 | "description": "Build the app for production with watcher.", |
17 | 17 | "command": "deno run -A ./build/esbuild.ts --watch", |
18 | | - "dependencies": ["clear-dist"] |
| 18 | + "dependencies": ["clear-dist"] |
19 | 19 | }, |
20 | 20 | "build:dev": { |
21 | 21 | "description": "Build the app for development.", |
22 | 22 | "command": "deno run -A ./build/esbuild.ts --develop", |
23 | | - "dependencies": ["clear-dist"] |
| 23 | + "dependencies": ["clear-dist"] |
24 | 24 | }, |
25 | 25 | "build:dev:watch": { |
26 | 26 | "description": "Build the app for development with watcher.", |
27 | 27 | "command": "deno run -A ./build/esbuild.ts --develop --watch", |
28 | | - "dependencies": ["clear-dist"] |
| 28 | + "dependencies": ["clear-dist"] |
29 | 29 | }, |
30 | 30 | "cache-reload": { |
31 | 31 | "description": "Reload the dependency cache.", |
|
34 | 34 | "serve": { |
35 | 35 | "description": "Run the server on port 8000 for production.", |
36 | 36 | "command": "deno run -A ./src/server/index.ts --port=8000", |
37 | | - "dependencies": ["build"] |
| 37 | + "dependencies": ["build"] |
38 | 38 | }, |
39 | 39 | "serve:dev": { |
40 | 40 | "description": "Run the server on port 8000 for development.", |
41 | 41 | "command": "deno run -A ./src/server/index.ts --develop --port=8000", |
42 | | - "dependencies": ["build:dev"] |
| 42 | + "dependencies": ["build:dev"] |
43 | 43 | }, |
44 | 44 | "lint": { |
45 | 45 | "description": "Run linter.", |
|
48 | 48 | "test": { |
49 | 49 | "description": "Run unit tests. Junit reports will be saved to \"./reports/report.xml\".", |
50 | 50 | "command": "deno test -A --check --reload --doc --permit-no-files --junit-path=\"./reports/report.xml\"", |
51 | | - "dependencies": ["clear-reports"] |
| 51 | + "dependencies": ["clear-reports"] |
52 | 52 | } |
53 | 53 | }, |
54 | 54 | "compilerOptions": { |
|
70 | 70 | ] |
71 | 71 | }, |
72 | 72 | "lint": { |
73 | | - "include": [ "./src/components/toggle_switch/" ], |
74 | 73 | "plugins": [ |
75 | 74 | "./lint/plugins/colon_spacing.ts" |
76 | 75 | ], |
|
107 | 106 | "fmt": { |
108 | 107 | "trailingCommas": "never", |
109 | 108 | "singleQuote": true, |
110 | | - "lineWidth": 120 |
| 109 | + "lineWidth": 120, |
| 110 | + "typeLiteral.separatorKind": "comma" |
111 | 111 | }, |
112 | 112 | "imports": { |
113 | 113 | "@deno/esbuild-plugin": "jsr:@deno/esbuild-plugin@^1.2.0", |
|
0 commit comments