Skip to content

Commit a4c9686

Browse files
committed
feat: init
1 parent d0ff08e commit a4c9686

Some content is hidden

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

49 files changed

+8288
-43
lines changed

.eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
dist
2+
public

.eslintrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "@antfu"
3+
}

.gitignore

+9-41
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,9 @@
1-
# Compiled Lua sources
2-
luac.out
3-
4-
# luarocks build files
5-
*.src.rock
6-
*.zip
7-
*.tar.gz
8-
9-
# Object files
10-
*.o
11-
*.os
12-
*.ko
13-
*.obj
14-
*.elf
15-
16-
# Precompiled Headers
17-
*.gch
18-
*.pch
19-
20-
# Libraries
21-
*.lib
22-
*.a
23-
*.la
24-
*.lo
25-
*.def
26-
*.exp
27-
28-
# Shared objects (inc. Windows DLLs)
29-
*.dll
30-
*.so
31-
*.so.*
32-
*.dylib
33-
34-
# Executables
35-
*.exe
36-
*.out
37-
*.app
38-
*.i*86
39-
*.x86_64
40-
*.hex
41-
1+
.DS_Store
2+
.vite-ssg-dist
3+
.vite-ssg-temp
4+
*.local
5+
dist
6+
dist-ssr
7+
node_modules
8+
.idea/
9+
*.log

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
shamefully-hoist=true

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Gleb Buzin
3+
Copyright (c) 2020-2021 Gleb Buzin
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# luabyexample
1+
# Lua by Example

index.html

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
7+
<link rel="apple-touch-icon" href="/pwa-192x192.png">
8+
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#00aba9">
9+
<meta name="msapplication-TileColor" content="#00aba9">
10+
<meta name="theme-color" content="#ffffff">
11+
<script>
12+
(function() {
13+
const prefersDark = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
14+
const setting = localStorage.getItem('vueuse-color-scheme') || 'auto'
15+
if (setting === 'dark' || (prefersDark && setting !== 'light'))
16+
document.documentElement.classList.toggle('dark', true)
17+
})()
18+
</script>
19+
</head>
20+
<body>
21+
<div id="app"></div>
22+
<script type="module" src="/src/main.ts"></script>
23+
</body>
24+
</html>

locales/en.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
button:
2+
back: Back
3+
home: Home
4+
toggle_dark: Toggle dark mode
5+
toggle_langs: Change languages
6+
intro:
7+
desc: Lua is a lightweight high-level programming language designed primarily for embedded use in applications.
8+
not-found: Not found

netlify.toml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[build.environment]
2+
# bypass npm auto install
3+
NPM_FLAGS = "--version"
4+
NODE_VERSION = "16"
5+
6+
[build]
7+
publish = "dist"
8+
command = "npx pnpm i --store=node_modules/.pnpm-store && npx pnpm run build"
9+
10+
[[redirects]]
11+
from = "/*"
12+
to = "/index.html"
13+
status = 200
14+
15+
[[headers]]
16+
for = "/manifest.webmanifest"
17+
[headers.values]
18+
Content-Type = "application/manifest+json"

package.json

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"private": true,
3+
"scripts": {
4+
"build": "vite-ssg build",
5+
"dev": "vite --port 3333 --open",
6+
"lint": "eslint \"**/*.{vue,ts,js}\"",
7+
"preview": "vite preview",
8+
"preview-https": "serve dist",
9+
"typecheck": "vue-tsc --noEmit"
10+
},
11+
"dependencies": {
12+
"@vueuse/core": "^7.4.1",
13+
"@vueuse/head": "^0.7.4",
14+
"nprogress": "^0.2.0",
15+
"pinia": "^2.0.9",
16+
"prism-theme-vars": "^0.2.2",
17+
"vue": "^3.2.26",
18+
"vue-demi": "^0.12.1",
19+
"vue-i18n": "^9.1.9",
20+
"vue-router": "^4.0.12"
21+
},
22+
"devDependencies": {
23+
"@antfu/eslint-config": "^0.14.0",
24+
"@iconify-json/carbon": "^1.0.12",
25+
"@intlify/vite-plugin-vue-i18n": "^3.2.1",
26+
"@types/markdown-it-link-attributes": "^3.0.1",
27+
"@types/nprogress": "^0.2.0",
28+
"@vitejs/plugin-vue": "^2.0.1",
29+
"@vue/compiler-sfc": "^3.2.26",
30+
"@vue/server-renderer": "^3.2.26",
31+
"@vue/test-utils": "^2.0.0-rc.18",
32+
"critters": "^0.0.15",
33+
"cross-env": "^7.0.3",
34+
"eslint": "^8.5.0",
35+
"https-localhost": "^4.7.0",
36+
"markdown-it-link-attributes": "^4.0.0",
37+
"markdown-it-prism": "^2.2.1",
38+
"pnpm": "^6.24.3",
39+
"typescript": "^4.5.4",
40+
"unplugin-auto-import": "^0.5.4",
41+
"unplugin-icons": "^0.13.0",
42+
"unplugin-vue-components": "^0.17.11",
43+
"vite": "^2.7.6",
44+
"vite-plugin-inspect": "^0.3.11",
45+
"vite-plugin-md": "^0.11.7",
46+
"vite-plugin-pages": "^0.19.7",
47+
"vite-plugin-pwa": "^0.11.12",
48+
"vite-plugin-vue-layouts": "^0.5.0",
49+
"vite-plugin-windicss": "^1.6.1",
50+
"vite-ssg": "^0.17.2",
51+
"vitest": "^0.0.113",
52+
"vue-tsc": "^0.30.0"
53+
}
54+
}

0 commit comments

Comments
 (0)