Skip to content

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
markhorn-dev committed Apr 3, 2024
1 parent 4ef8f52 commit 92f37a5
Show file tree
Hide file tree
Showing 13 changed files with 250 additions and 769 deletions.
6 changes: 0 additions & 6 deletions .eslintignore

This file was deleted.

35 changes: 0 additions & 35 deletions .eslintrc.cjs

This file was deleted.

18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,11 @@ Replace npm with your package manager of choice. `npm`, `pnpm`, `yarn`, `bun`, e
| :------------------------ | :----------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts local dev server at `localhost:4321` |
| `npm run dev:network` | Starts dev server on local network |
| `npm run sync` | Generates TypeScript types for all Astro modules.|
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
| `npm run preview:network` | Starts preview server on local network |
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
| `npm run astro -- --help` | Get help using the Astro CLI |
| `npm run lint` | Run ESLint |
Expand All @@ -70,4 +72,18 @@ Theme inspired by [Paco Coursey](https://paco.me/), [Lee Robinson](https://leero

## 🏛️ License

MIT
MIT


# 1.0.1 Update

Added ability to run dev and preview on local network.
added npm run dev:network
added npm run preview:network

Added slightly more particle density in both light and dark mode.

Added subtle dark mode star and meteor animations.

Removed eslint config

6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
"version": "1.0.0",
"scripts": {
"dev": "astro dev",
"dev:network": "astro dev --host",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"preview:network": "astro dev --host",
"astro": "astro",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
Expand All @@ -19,12 +21,8 @@
"@astrojs/solid-js": "^4.0.1",
"@astrojs/tailwind": "^5.1.0",
"@tailwindcss/typography": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"astro": "^4.4.13",
"clsx": "^2.1.0",
"eslint": "^8.57.0",
"eslint-plugin-astro": "^0.31.4",
"fuse.js": "^7.0.0",
"sharp": "^0.33.2",
"solid-js": "^1.8.15",
Expand Down
Loading

0 comments on commit 92f37a5

Please sign in to comment.