~repos /only-bible-app
git clone https://pyrossh.dev/repos/only-bible-app.git
The only bible app you will ever need. No ads. No in-app purchases. No distractions.
b264ef5f
—
pyrossh 1 year ago
fix config
- .github/workflows/build.yml +1 -1
- website/README.md +0 -38
- website/package-lock.json +5 -8
- website/package.json +1 -1
- website/svelte.config.js +1 -1
.github/workflows/build.yml
CHANGED
|
@@ -42,7 +42,7 @@ jobs:
|
|
|
42
42
|
- run: npm run build
|
|
43
43
|
- uses: actions/upload-pages-artifact@v3
|
|
44
44
|
with:
|
|
45
|
-
path: '
|
|
45
|
+
path: 'build/'
|
|
46
46
|
|
|
47
47
|
website-deploy:
|
|
48
48
|
needs: website-build
|
website/README.md
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
# create-svelte
|
|
2
|
-
|
|
3
|
-
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/main/packages/create-svelte).
|
|
4
|
-
|
|
5
|
-
## Creating a project
|
|
6
|
-
|
|
7
|
-
If you're seeing this, you've probably already done this step. Congrats!
|
|
8
|
-
|
|
9
|
-
```bash
|
|
10
|
-
# create a new project in the current directory
|
|
11
|
-
npm create svelte@latest
|
|
12
|
-
|
|
13
|
-
# create a new project in my-app
|
|
14
|
-
npm create svelte@latest my-app
|
|
15
|
-
```
|
|
16
|
-
|
|
17
|
-
## Developing
|
|
18
|
-
|
|
19
|
-
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
|
|
20
|
-
|
|
21
|
-
```bash
|
|
22
|
-
npm run dev
|
|
23
|
-
|
|
24
|
-
# or start the server and open the app in a new browser tab
|
|
25
|
-
npm run dev -- --open
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
## Building
|
|
29
|
-
|
|
30
|
-
To create a production version of your app:
|
|
31
|
-
|
|
32
|
-
```bash
|
|
33
|
-
npm run build
|
|
34
|
-
```
|
|
35
|
-
|
|
36
|
-
You can preview the production build with `npm run preview`.
|
|
37
|
-
|
|
38
|
-
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.
|
website/package-lock.json
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"unocss": "^0.59.4"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@sveltejs/adapter-
|
|
15
|
+
"@sveltejs/adapter-static": "^3.0.1",
|
|
16
16
|
"@sveltejs/kit": "^2.0.0",
|
|
17
17
|
"@types/eslint": "^8.56.0",
|
|
18
18
|
"@unocss/extractor-svelte": "^0.59.4",
|
|
@@ -1359,14 +1359,11 @@
|
|
|
1359
1359
|
"win32"
|
|
1360
1360
|
]
|
|
1361
1361
|
},
|
|
1362
|
-
"node_modules/@sveltejs/adapter-
|
|
1362
|
+
"node_modules/@sveltejs/adapter-static": {
|
|
1363
|
-
"version": "3.
|
|
1363
|
+
"version": "3.0.1",
|
|
1364
|
-
"resolved": "https://registry.npmjs.org/@sveltejs/adapter-
|
|
1364
|
+
"resolved": "https://registry.npmjs.org/@sveltejs/adapter-static/-/adapter-static-3.0.1.tgz",
|
|
1365
|
-
"integrity": "sha512-
|
|
1365
|
+
"integrity": "sha512-6lMvf7xYEJ+oGeR5L8DFJJrowkefTK6ZgA4JiMqoClMkKq0s6yvsd3FZfCFvX1fQ0tpCD7fkuRVHsnUVgsHyNg==",
|
|
1366
1366
|
"dev": true,
|
|
1367
|
-
"dependencies": {
|
|
1368
|
-
"import-meta-resolve": "^4.0.0"
|
|
1369
|
-
},
|
|
1370
1367
|
"peerDependencies": {
|
|
1371
1368
|
"@sveltejs/kit": "^2.0.0"
|
|
1372
1369
|
}
|
website/package.json
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"format": "prettier --write ."
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@sveltejs/adapter-
|
|
15
|
+
"@sveltejs/adapter-static": "^3.0.1",
|
|
16
16
|
"@sveltejs/kit": "^2.0.0",
|
|
17
17
|
"@types/eslint": "^8.56.0",
|
|
18
18
|
"@unocss/extractor-svelte": "^0.59.4",
|
website/svelte.config.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import adapter from '@sveltejs/adapter-
|
|
1
|
+
import adapter from '@sveltejs/adapter-static';
|
|
2
2
|
|
|
3
3
|
/** @type {import('@sveltejs/kit').Config} */
|
|
4
4
|
const config = {
|