Skip to content

Commit dd2aefc

Browse files
committed
setup resplice libs
1 parent 3a6035f commit dd2aefc

Some content is hidden

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

70 files changed

+13229
-3758
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ node_modules
55
.pnp
66
.pnp.js
77

8+
# builds
9+
dist
10+
811
# testing
912
coverage
1013

apps/reauth/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
"name": "@resplice/reauth",
33
"version": "0.0.0",
44
"type": "module",
5+
"author": "[email protected]",
6+
"license": "UNLICENSED",
7+
"private": true,
58
"scripts": {
69
"dev": "vite dev --port 3000 --open",
710
"build": "vite build",

apps/reauth/src/app.html

+13-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
<!DOCTYPE html>
22
<html lang="en">
3-
<head>
4-
<meta charset="utf-8" />
5-
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
6-
<meta name="viewport" content="width=device-width, initial-scale=1" />
7-
%sveltekit.head%
8-
</head>
9-
<body>
10-
<div>%sveltekit.body%</div>
11-
</body>
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta
6+
name="viewport"
7+
content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no, viewport-fit=cover"
8+
/>
9+
<meta name="theme-color" content="#1BBC9B" />
10+
<link rel="icon" href="%sveltekit.assets%/favicon.ico" />
11+
%sveltekit.head%
12+
</head>
13+
<body>
14+
<div>%sveltekit.body%</div>
15+
</body>
1216
</html>

apps/reauth/static/favicon.ico

14.7 KB
Binary file not shown.

apps/reauth/static/favicon.png

-1.53 KB
Binary file not shown.

apps/reauth/tsconfig.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"extends": "./.svelte-kit/tsconfig.json",
3-
"compilerOptions": {
4-
"allowJs": true,
5-
"checkJs": true,
6-
"esModuleInterop": true,
7-
"forceConsistentCasingInFileNames": true,
8-
"resolveJsonModule": true,
9-
"skipLibCheck": true,
10-
"sourceMap": true,
11-
"strict": true
12-
}
2+
"extends": "./.svelte-kit/tsconfig.json",
3+
"compilerOptions": {
4+
"allowJs": true,
5+
"checkJs": true,
6+
"esModuleInterop": true,
7+
"forceConsistentCasingInFileNames": true,
8+
"resolveJsonModule": true,
9+
"skipLibCheck": true,
10+
"sourceMap": true,
11+
"strict": true
12+
}
1313
}

apps/resplice/.eslintrc.cjs

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
extends: ['custom']
3+
};

apps/resplice/.vscode/extensions.json

-3
This file was deleted.

apps/resplice/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" href="/favicon.ico" />
65
<meta
76
name="viewport"
87
content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no, viewport-fit=cover"
98
/>
10-
<link rel="manifest" crossorigin="use-credentials" href="/manifest.json" />
119
<meta name="theme-color" content="#1BBC9B" />
10+
<link rel="icon" href="/favicon.ico" />
11+
<link rel="manifest" crossorigin="use-credentials" href="/manifest.json" />
1212
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
1313
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
1414
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />

apps/resplice/package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
{
22
"name": "@resplice/resplice",
3-
"private": true,
43
"version": "0.0.0",
54
"type": "module",
5+
"author": "[email protected]",
6+
"license": "UNLICENSED",
7+
"private": true,
68
"scripts": {
79
"dev": "vite",
810
"build": "vite build",

0 commit comments

Comments
 (0)