|
16 | 16 | "./dictionary.txt" |
17 | 17 | ], |
18 | 18 | "write": [ |
19 | | - "./src/dictionary/dictionary.ts" |
| 19 | + "./src/dictionary/global_dictionary.ts" |
20 | 20 | ] |
21 | 21 | }, |
22 | 22 | "soft-build-dictionary": { |
|
27 | 27 | ], |
28 | 28 | "read": [ |
29 | 29 | "./dictionary.txt", |
30 | | - "./src/dictionary/dictionary.ts" |
| 30 | + "./src/dictionary/global_dictionary.ts" |
31 | 31 | ], |
32 | 32 | "write": [ |
33 | | - "./src/dictionary/dictionary.ts" |
| 33 | + "./src/dictionary/global_dictionary.ts" |
34 | 34 | ] |
35 | 35 | } |
36 | 36 | }, |
37 | 37 | "tasks": { |
38 | 38 | "build": { |
39 | | - "description": "Builds every static files needed for GitHub pages. This builds the dictionary first at `./src/dictionary/dictionary.ts` then the distribution code `./dist/main.js`.", |
| 39 | + "description": "Builds every static files needed for GitHub pages. This builds the dictionary first at `./src/dictionary/global_dictionary.ts` then the distribution code `./dist/main.js`.", |
40 | 40 | "command": "deno bundle --output=./dist/main.js --minify --sourcemap=linked --platform=browser --format=iife ./src/main.ts", |
41 | 41 | "dependencies": [ |
42 | 42 | "build-dictionary" |
|
57 | 57 | ] |
58 | 58 | }, |
59 | 59 | "build-dictionary": { |
60 | | - "description": "Builds the dictionary at `./src/dictionary/dictionary.ts`", |
| 60 | + "description": "Builds the dictionary at `./src/dictionary/global_dictionary.ts`", |
61 | 61 | "command": "deno run --permission-set=build-dictionary --no-prompt --frozen --cached-only ./src/dictionary/build.ts" |
62 | 62 | }, |
63 | 63 | "soft-build-dictionary": { |
64 | | - "description": "Only builds the dictionary at `./src/dictionary/dictionary.ts` when it doesn't exists. When an error occurs, an empty dictionary is provided.", |
| 64 | + "description": "Only builds the dictionary at `./src/dictionary/global_dictionary.ts` when it doesn't exists. When an error occurs, an empty dictionary is provided.", |
65 | 65 | "command": "deno run --permission-set=soft-build-dictionary --no-prompt --frozen --cached-only ./src/dictionary/soft-build.ts" |
66 | 66 | } |
67 | 67 | }, |
68 | 68 | "fmt": { |
69 | 69 | "exclude": [ |
70 | | - "./src/dictionary/dictionary.ts", |
| 70 | + "./src/dictionary/global_dictionary.ts", |
71 | 71 | "./dist/main.js" |
72 | 72 | ] |
73 | 73 | }, |
74 | 74 | "lint": { |
75 | 75 | "exclude": [ |
76 | | - "./src/dictionary/dictionary.ts", |
| 76 | + "./src/dictionary/global_dictionary.ts", |
77 | 77 | "./dist/main.js" |
78 | 78 | ], |
79 | 79 | "rules": { |
|
0 commit comments