Skip to content

Commit 58cb611

Browse files
authored
Merge pull request #79 from Picorims/4-dev-add-tauri-v20-to-project
4 dev add tauri v20 to project
2 parents 3bd91e4 + 29ba027 commit 58cb611

File tree

214 files changed

+4762
-25
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

214 files changed

+4762
-25
lines changed

.gitignore

+22-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
node_modules
2+
3+
# Output
4+
.output
5+
.vercel
6+
/.svelte-kit
7+
/build
8+
19
# OS
210
.DS_Store
3-
Thumbs.db
11+
Thumbs.db
12+
13+
# Env
14+
.env
15+
.env.*
16+
!.env.example
17+
!.env.test
18+
19+
# Vite
20+
vite.config.js.timestamp-*
21+
vite.config.ts.timestamp-*
22+
23+
# Test
24+
/test-results

src/.npmrc .npmrc

File renamed without changes.
File renamed without changes.

src/.prettierrc .prettierrc

File renamed without changes.
File renamed without changes.
File renamed without changes.

src/package-lock.json package-lock.json

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

src/package.json package.json

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
"@sveltejs/adapter-static": "^3.0.2",
2727
"@sveltejs/kit": "^2.0.0",
2828
"@sveltejs/vite-plugin-svelte": "^3.0.0",
29+
"@tauri-apps/cli": "^2.0.1",
2930
"@types/eslint": "^8.56.7",
3031
"eslint": "^9.0.0",
3132
"eslint-config-prettier": "^9.1.0",
File renamed without changes.

src-tauri/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Generated by Cargo
2+
# will have compiled files and executables
3+
/target/
4+
/gen/schemas

0 commit comments

Comments
 (0)