Compare commits
5 Commits
b4668cc87b
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
68bf950505
|
|||
|
4151901413
|
|||
|
863b04b8f2
|
|||
|
2c0d5de96e
|
|||
|
6e07c6b5c6
|
3
.prettierignore
Normal file
3
.prettierignore
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
/.astro/
|
||||||
|
/dist/
|
||||||
|
/pnpm-lock.yaml
|
||||||
@@ -1,7 +1,12 @@
|
|||||||
# vim: filetype=gitignore
|
# vim: filetype=gitignore
|
||||||
|
|
||||||
|
/dist/
|
||||||
|
|
||||||
*.ico
|
*.ico
|
||||||
*.json
|
*.json
|
||||||
*.md
|
*.md
|
||||||
*.mjs
|
*.mjs
|
||||||
|
*.png
|
||||||
*.svg
|
*.svg
|
||||||
|
*.webp
|
||||||
*.yaml
|
*.yaml
|
||||||
|
|||||||
@@ -31,9 +31,9 @@ Any static assets, like images, can be placed in the `public/` directory.
|
|||||||
|
|
||||||
All commands are run from the root of the project, from a terminal:
|
All commands are run from the root of the project, from a terminal:
|
||||||
|
|
||||||
| Command | Action |
|
| Command | Action |
|
||||||
| :------------------------ | :----------------------------------------------- |
|
| :--------------------- | :----------------------------------------------- |
|
||||||
| `pnpm install` | Installs dependencies |
|
| `pnpm install` | Installs dependencies |
|
||||||
| `pnpm dev` | Starts local dev server at `localhost:4321` |
|
| `pnpm dev` | Starts local dev server at `localhost:4321` |
|
||||||
| `pnpm build` | Build your production site to `./dist/` |
|
| `pnpm build` | Build your production site to `./dist/` |
|
||||||
| `pnpm preview` | Preview your build locally, before deploying |
|
| `pnpm preview` | Preview your build locally, before deploying |
|
||||||
|
|||||||
@@ -5,17 +5,23 @@ import { defineConfig } from "eslint/config";
|
|||||||
import jsxA11y from "eslint-plugin-jsx-a11y";
|
import jsxA11y from "eslint-plugin-jsx-a11y";
|
||||||
|
|
||||||
export default defineConfig([
|
export default defineConfig([
|
||||||
|
{
|
||||||
|
ignores: ["./dist/"],
|
||||||
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
files: ["**/*.{js,mjs}"],
|
files: ["**/*.{js,mjs}"],
|
||||||
plugins: { js },
|
plugins: { js },
|
||||||
extends: ["js/recommended"],
|
extends: ["js/recommended"],
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
files: ["**/*.{astro,html}"],
|
files: ["**/*.{astro,html}"],
|
||||||
plugins: {
|
plugins: {
|
||||||
"jsx-a11y": jsxA11y,
|
"jsx-a11y": jsxA11y,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
...eslintPluginAstro.configs.recommended,
|
...eslintPluginAstro.configs.recommended,
|
||||||
eslintPluginPrettierRecommended,
|
eslintPluginPrettierRecommended,
|
||||||
]);
|
]);
|
||||||
|
|||||||
18
package.json
18
package.json
@@ -7,24 +7,26 @@
|
|||||||
"build": "astro build",
|
"build": "astro build",
|
||||||
"preview": "astro preview",
|
"preview": "astro preview",
|
||||||
"astro": "astro",
|
"astro": "astro",
|
||||||
|
"format": "prettier --write .",
|
||||||
|
"format:check": "prettier --check .",
|
||||||
"lint:eslint": "eslint",
|
"lint:eslint": "eslint",
|
||||||
"lint:markuplint": "markuplint '**/*.{astro,html}'",
|
"lint:markuplint": "markuplint './{public,src}/**/*.{astro,html}'",
|
||||||
"lint:stylelint": "stylelint .",
|
"lint:stylelint": "stylelint .",
|
||||||
"deploy": "astro build && scp -r dist/* vds:~/dockervolumes/f1r3xyz_website/web/"
|
"deploy": "astro build && scp -r dist/* vds:~/dockervolumes/f1r3xyz_website/web/"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@tailwindcss/vite": "^4.2.1",
|
"@tailwindcss/vite": "^4.2.2",
|
||||||
"astro": "^5.17.1",
|
"astro": "^6.0.8",
|
||||||
"tailwindcss": "^4.2.1"
|
"tailwindcss": "^4.2.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/ts-plugin": "^1.10.6",
|
"@astrojs/ts-plugin": "^1.10.7",
|
||||||
"@eslint/js": "^10.0.1",
|
"@eslint/js": "^10.0.1",
|
||||||
"@markuplint/astro-parser": "^4.6.23",
|
"@markuplint/astro-parser": "^4.6.23",
|
||||||
"@markuplint/ml-config": "^4.8.15",
|
"@markuplint/ml-config": "^4.8.15",
|
||||||
"@typescript-eslint/parser": "^8.56.1",
|
"@typescript-eslint/parser": "^8.57.2",
|
||||||
"cspell": "^9.7.0",
|
"cspell": "^9.7.0",
|
||||||
"eslint": "^10.0.2",
|
"eslint": "^10.1.0",
|
||||||
"eslint-config-prettier": "^10.1.8",
|
"eslint-config-prettier": "^10.1.8",
|
||||||
"eslint-plugin-astro": "^1.6.0",
|
"eslint-plugin-astro": "^1.6.0",
|
||||||
"eslint-plugin-jsx-a11y": "^6.10.2",
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
||||||
@@ -35,7 +37,7 @@
|
|||||||
"prettier-plugin-astro": "^0.14.1",
|
"prettier-plugin-astro": "^0.14.1",
|
||||||
"prettier-plugin-tailwindcss": "^0.7.2",
|
"prettier-plugin-tailwindcss": "^0.7.2",
|
||||||
"sharp": "^0.34.5",
|
"sharp": "^0.34.5",
|
||||||
"stylelint": "^17.4.0",
|
"stylelint": "^17.5.0",
|
||||||
"stylelint-config-html": "^1.1.0",
|
"stylelint-config-html": "^1.1.0",
|
||||||
"stylelint-config-recommended": "^18.0.0",
|
"stylelint-config-recommended": "^18.0.0",
|
||||||
"stylelint-config-standard": "^40.0.0",
|
"stylelint-config-standard": "^40.0.0",
|
||||||
|
|||||||
2104
pnpm-lock.yaml
generated
2104
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
3
pnpm-workspace.yaml
Normal file
3
pnpm-workspace.yaml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
overrides:
|
||||||
|
minimatch@10.1.2: 10.2.3
|
||||||
Reference in New Issue
Block a user