Skip to content

Commit 9190e5b

Browse files
committed
tune build process
1 parent e3213e7 commit 9190e5b

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ FIREFOX_MANIFEST = ./manifest.firefox.json
1010
DENO_DEV = NODE_ENV=development deno run --watch
1111
DENO_PROD = NODE_ENV=production deno run
1212
DENO_OPTIONS = --allow-env --allow-read --allow-run
13-
BUILD_SCRIPT = ./build.ts
1413
OUTPUT_DIR = ./public/
1514
BUILD_DIR = ./public/build/
15+
BUILD_SCRIPT = ./build.ts
1616

1717
clean:
1818
rm -rf ./node_modules ./deno.lock $(BUILD_DIR) $(CHROME_ZIP) $(FIREFOX_ZIP)

deno.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,7 @@
2828
"tests/",
2929
"public/*.html",
3030
"build.ts",
31-
"deno.json",
32-
"package.json",
33-
"manifest.chrome.json",
34-
"manifest.firefox.json",
35-
"tsconfig.json"
31+
"*.json"
3632
]
3733
},
3834
"imports": {

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"typeRoots": ["node_modules/@types", "src/@types"],
1616
"baseUrl": "."
1717
},
18-
"include": ["src/**/*", "src/**/*.vue"],
18+
"include": ["src/**/*", "build.ts"],
1919
"exclude": [
2020
"public",
2121
"**/~*.ts"

0 commit comments

Comments
 (0)