-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tsbundle@0.1.5 tsbundle@0.1.5 tsbundle@0.1.5 syclone@0.1.5
- Loading branch information
1 parent
75aea84
commit 808e416
Showing
47 changed files
with
361 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
.github/ | ||
.turbo/ | ||
CHANGELOG.md | ||
Source/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
## 0.1.5 | ||
|
||
- Cleanup | ||
|
||
## 0.1.4 | ||
|
||
- Renamed | ||
|
||
## 0.1.4 | ||
|
||
- Cleanup | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# dependencies | ||
package-lock.json | ||
node_modules/ | ||
.snowpack/ | ||
|
||
# logs | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# environment variables | ||
.env | ||
.env.production | ||
|
||
# macOS-specific files | ||
.DS_Store | ||
|
||
Target/ | ||
.astro |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.github/ | ||
.turbo/ | ||
Source/ | ||
public/ | ||
CONTRIBUTING.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## 0.0.1 | ||
|
||
- Initial version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
User-agent: * | ||
Disallow: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"background_color": "// TODO Set the background color of the app", | ||
"categories": [], | ||
"display": "minimal-ui", | ||
"name": "// TODO Use the same title as in template.html", | ||
"orientation": "landscape", | ||
"short_name": "// TODO Title but lowercase", | ||
"start_url": "/", | ||
"theme_color": "// TODO Use the same theme color from template.html" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# [astro-starter-template] 📄 | ||
|
||
Starter template for AstroJS. | ||
|
||
[astro-starter-template]: https://npmjs.org/astro-starter-template |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
--- | ||
import "@Style/Base.css"; | ||
// TODO Place your title and description here | ||
const { title = "", description = "" } = Astro.props; | ||
--- | ||
|
||
<!DOCTYPE html> | ||
<html lang="en" class="no-js" dir="ltr"> | ||
<head> | ||
<script> | ||
document.documentElement.classList.remove("no-js"); | ||
document.documentElement.classList.add("js"); | ||
</script> | ||
|
||
<!-- Meta --> | ||
<title>{title}</title> | ||
<meta charset="utf-8" /> | ||
<meta name="description" content={description} /> | ||
<meta name="viewport" content="width=device-width,initial-scale=1.0" /> | ||
<!-- TODO Define your color theme in hex here --> | ||
<meta name="theme-color" content="" /> | ||
<meta name="format-detection" content="telephone=no" /> | ||
<meta name="twitter:dnt" content="on" /> | ||
|
||
<!-- Links --> | ||
<link | ||
rel="preconnect" | ||
href="https://fonts.googleapis.com" | ||
crossorigin | ||
/> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link | ||
rel="manifest" | ||
href="/site.webmanifest" | ||
crossorigin="use-credentials" | ||
/> | ||
|
||
<style is:global> | ||
@import "@Style/Global.css"; | ||
</style> | ||
|
||
<!-- Favicon --> | ||
</head> | ||
<body> | ||
<!-- TODO Generate the ID here --> | ||
<div id=""> | ||
<div class="grow"> | ||
<slot /> | ||
</div> | ||
<script> | ||
import "@Script/Firebase"; | ||
</script> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import * as dotenv from "dotenv"; | ||
import { z } from "zod"; | ||
|
||
dotenv.config(); | ||
|
||
export default z | ||
.object({ | ||
GH_AUTH_TOKEN: z.string().default(""), | ||
}) | ||
.parse(process.env); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { initializeApp as Initialize } from "firebase/app"; | ||
|
||
Initialize({ | ||
apiKey: "", // TODO Replace with your API key | ||
appId: "", // TODO Replace with your app ID | ||
authDomain: "", // TODO Replace with your auth domain | ||
databaseURL: "", // TODO Replace with your database URL | ||
measurementId: "", // TODO Replace with your measurement ID | ||
messagingSenderId: "", // TODO Replace with your messaging sender ID | ||
projectId: "", // TODO Replace with your project ID | ||
storageBucket: "", // TODO Replace with your storage bucket | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
@tailwind variants; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
html { | ||
-webkit-tap-highlight-color: transparent; | ||
} | ||
|
||
html, | ||
body { | ||
height: 100%; | ||
} | ||
|
||
body { | ||
@apply flex | ||
flex-grow | ||
flex-col | ||
antialiased | ||
dark:bg-black | ||
dark:text-white | ||
sm:subpixel-antialiased; | ||
} | ||
|
||
img { | ||
@apply inline-block | ||
select-none | ||
outline-none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
import Base from "@Layout/Base.astro"; | ||
--- | ||
|
||
<Base /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import PreFetch from "@astrojs/prefetch"; | ||
import SiteMap from "@astrojs/sitemap"; | ||
import Compress from "astro-compress"; | ||
import Critters from "astro-critters"; | ||
import ROME from "astro-rome"; | ||
import { defineConfig } from "astro/config"; | ||
import Worker from "astrojs-service-worker"; | ||
|
||
export default defineConfig({ | ||
srcDir: "./Source", | ||
publicDir: "./Public", | ||
outDir: "./Target", | ||
// TODO Place your site URL here | ||
// site: "", | ||
experimental: { | ||
assets: true, | ||
viewTransitions: true, | ||
}, | ||
compressHTML: true, | ||
integrations: [ | ||
import.meta.env.MODE === "production" ? Worker() : null, | ||
SiteMap(), | ||
Critters({ Logger: 1 }), | ||
PreFetch(), | ||
ROME({ Logger: 1 }), | ||
Compress({ Logger: 1 }), | ||
], | ||
vite: { | ||
build: { | ||
sourcemap: true, | ||
}, | ||
}, | ||
}); |
Oops, something went wrong.