Skip to content

Commit 0f2151d

Browse files
committed
feat(astro): Use astro
1 parent 2089bd1 commit 0f2151d

29 files changed

Lines changed: 6043 additions & 12000 deletions

.eleventy.js

Lines changed: 0 additions & 19 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @fabianmoronzirfas
1+
* @ff6347

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717

1818
strategy:
1919
matrix:
20-
node-version: [10.x, 12.x, 14.x]
20+
node-version: [18.x, 20.x]
2121

2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v4
2424
- name: Use Node.js ${{ matrix.node-version }}
25-
uses: actions/setup-node@v2
25+
uses: actions/setup-node@v4
2626
with:
2727
node-version: ${{ matrix.node-version }}
2828
- run: npm ci
2929
- run: npm run build --if-present
30-
- run: npm test
30+
- run: npm test --if-present

.gitignore

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,26 @@ _site/
109109
.jekyll-metadata
110110

111111
# Local Netlify folder
112-
.netlify
112+
.netlify
113+
114+
# build output
115+
dist/
116+
# generated types
117+
.astro/
118+
119+
# dependencies
120+
node_modules/
121+
122+
# logs
123+
npm-debug.log*
124+
yarn-debug.log*
125+
yarn-error.log*
126+
pnpm-debug.log*
127+
128+
129+
# environment variables
130+
.env
131+
.env.production
132+
133+
# macOS-specific files
134+
.DS_Store

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14.16.0
1+
v20.11.0

.vscode/extensions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"recommendations": ["astro-build.astro-vscode"],
3+
"unwantedRecommendations": []
4+
}

.vscode/launch.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"command": "./node_modules/.bin/astro dev",
6+
"name": "Development server",
7+
"request": "launch",
8+
"type": "node-terminal"
9+
}
10+
]
11+
}

.vscode/settings.json

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,18 @@
1515
"titleBar.activeForeground": "#15202b",
1616
"titleBar.border": "#aa8e9e",
1717
"titleBar.inactiveBackground": "#aa8e9e99",
18-
"titleBar.inactiveForeground": "#15202b99"
18+
"titleBar.inactiveForeground": "#15202b99",
19+
"commandCenter.border": "#15202b99",
20+
"editorGroup.border": "#c0abb7",
21+
"panel.border": "#c0abb7",
22+
"sash.hoverBorder": "#c0abb7",
23+
"sideBar.border": "#c0abb7",
24+
"statusBar.debuggingBackground": "#8eaa9a",
25+
"statusBar.debuggingBorder": "#8eaa9a",
26+
"statusBar.debuggingForeground": "#15202b",
27+
"statusBarItem.remoteBackground": "#aa8e9e",
28+
"statusBarItem.remoteForeground": "#15202b",
29+
"tab.activeBorder": "#c0abb7"
1930
},
2031
"peacock.color": "#aa8e9e"
2132
}

LICENSE

Lines changed: 0 additions & 21 deletions
This file was deleted.

0 commit comments

Comments
 (0)