Skip to content

Commit

Permalink
use ! & update .gitattributes
Browse files Browse the repository at this point in the history
  • Loading branch information
hslee2008 committed Dec 23, 2023
1 parent 224584a commit 7e58ce0
Show file tree
Hide file tree
Showing 4 changed files with 208 additions and 206 deletions.
7 changes: 5 additions & 2 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Exclude files from language detection
privacy-policy.html linguist-vendored
android/** linguist-vendored
android/** linguist-vendored
data/** linguist-vendored
.github/** linguist-vendored
.vscode/** linguist-vendored
public/** linguist-vendored
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"svelte-check": "^3.6.2",
"tslib": "^2.6.2",
"vite": "^5.0.10",
"vitest": "^1.0.4"
"vitest": "^1.1.0"
},
"dependencies": {
"carbon-components-svelte": "^0.82.7",
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import App from "./App.svelte";

const targetElement = document.getElementById("app");
const app = new App({
target: targetElement ? targetElement : document.body,
target: targetElement!,
});

export default app;
Loading

0 comments on commit 7e58ce0

Please sign in to comment.