Skip to content

Commit afe31a0

Browse files
ci: updates to build ci from master
2 parents 5c8e152 + 141f4df commit afe31a0

File tree

4 files changed

+7
-13
lines changed

4 files changed

+7
-13
lines changed

.github/workflows/publish-to-auto-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: "publish"
33
on:
44
push:
55
branches:
6-
- release
6+
- master
77

88
# On each push to the `release` branch it will create or update a GitHub release, build your app, and upload the artifacts to the release.
99

src-tauri/Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/tauri.conf.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"productName": "captains-log",
3-
"version": "0.0.0",
3+
"version": "0.0.1",
44
"identifier": "captains-log",
55
"build": {
66
"beforeDevCommand": "npm run dev",

tsconfig.json

+4-10
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,12 @@
22
"compilerOptions": {
33
"target": "ES2020",
44
"useDefineForClassFields": true,
5-
"lib": [
6-
"ES2020",
7-
"DOM",
8-
"DOM.Iterable"
9-
],
5+
"lib": ["ES2020", "DOM", "DOM.Iterable"],
106
"module": "ESNext",
117
"skipLibCheck": true,
128
"baseUrl": ".",
139
"paths": {
14-
"~/*": [
15-
"./src/*"
16-
]
10+
"~/*": ["./src/*"]
1711
},
1812
/* Bundler mode */
1913
"moduleResolution": "bundler",
@@ -34,17 +28,17 @@
3428
"**/*.ts",
3529
"**/*.tsx",
3630
"**/*.cjs",
37-
"**/*.js",
31+
"**/*.js"
3832
],
3933
"exclude": [
4034
"node_modules",
4135
"dist",
4236
"build",
4337
"coverage",
4438
"public",
39+
"vite.config.ts",
4540
"vite.config.d.ts"
4641
],
47-
4842
"references": [
4943
{
5044
"path": "./tsconfig.node.json"

0 commit comments

Comments
 (0)