Skip to content

Commit 8d531c0

Browse files
authored
AstroJS 5 and TailwindCSS 4 (#14)
* feat: upgrade to latest AstroJS and TailwindCSS * fix: fix padding and hover color
1 parent a1597d5 commit 8d531c0

33 files changed

Lines changed: 3237 additions & 3204 deletions

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ end_of_line = lf
99
indent_size = 2
1010
indent_style = space
1111
insert_final_newline = true
12-
trim_trailing_whitespace = false
12+
trim_trailing_whitespace = false

.eslintignore

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

.eslintrc.js

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

.gitignore

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# build output
22
dist/
3-
.output/
3+
4+
# generated types
5+
.astro/
46

57
# dependencies
68
node_modules/
@@ -11,14 +13,12 @@ yarn-debug.log*
1113
yarn-error.log*
1214
pnpm-debug.log*
1315

14-
1516
# environment variables
1617
.env
1718
.env.production
1819

1920
# macOS-specific files
2021
.DS_Store
2122

22-
package-lock.json
23-
24-
.astro
23+
# jetbrains setting folder
24+
.idea/

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20
1+
22

.npmrc

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

.stackblitzrc

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

.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+
}

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
1414
| `npm run astro --help` | Get help using the Astro CLI |
1515
| `npm run format` | Format code with [Prettier](https://prettier.io/) |
16-
| `npm run clean` | Remove `node_modules` and build output |
1716

1817
## Credits
1918

0 commit comments

Comments
 (0)