Skip to content

Commit

Permalink
Merge pull request #12 from markteekman/develop
Browse files Browse the repository at this point in the history
Cleanup project
  • Loading branch information
markteekman authored Oct 6, 2022
2 parents f5d3d37 + 57ff36f commit f18dfb7
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 30 deletions.
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
## force pnpm to hoist
# Expose Astro dependencies for `pnpm` users
shamefully-hoist = true
7 changes: 0 additions & 7 deletions .stylelintrc.json

This file was deleted.

8 changes: 1 addition & 7 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
import { defineConfig } from 'astro/config'

// https://astro.build/config
export default defineConfig({
vite: {
ssr: {
external: ['svgo']
}
}
})
export default defineConfig({})
9 changes: 3 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,11 @@
"preview": "astro preview"
},
"dependencies": {
"accessible-astro-components": "^1.5.6",
"accessible-astro-components": "^1.5.7",
"astro-icon": "^0.7.3"
},
"devDependencies": {
"astro": "^1.1.5",
"autoprefixer": "^10.4.0",
"sass": "^1.49.9",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0"
"astro": "^1.4.4",
"sass": "^1.49.9"
}
}
5 changes: 0 additions & 5 deletions postcss.config.cjs

This file was deleted.

2 changes: 0 additions & 2 deletions public/robots.txt

This file was deleted.

2 changes: 1 addition & 1 deletion src/components/Navigation.astro
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import { Icon } from 'astro-icon'
<a href="/">
<img src={(await import('../assets/img/logo.svg')).default} alt="Your Logo">
</a>
<ResponsiveToggle client:load />
<ResponsiveToggle />
<nav>
<ul>
<slot />
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/DefaultLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ let subtitle = 'Accessible Astro Dashboard'
<SkipLinks />
</header>
<div class="ui-controls">
<DarkMode client:load />
<DarkMode />
</div>
<div class="admin-interface">
<Navigation>
Expand Down

0 comments on commit f18dfb7

Please sign in to comment.