diff --git a/.husky/commit-msg b/.husky/commit-msg index bbdb278..19100b3 100644 --- a/.husky/commit-msg +++ b/.husky/commit-msg @@ -1 +1 @@ -bunx --no -- commitlint --edit $1 +bunx commitlint --edit $1 \ No newline at end of file diff --git a/README.md b/README.md index 258562e..971e98b 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,6 @@ This is my personal portfolio and blog template. It allows you to create blog po ## Development -This repository includes a Nix Flakes-based development environment. If Nix is configured on your system, run `nix develop` to enter the development environment. Optionally, [direnv](https://github.com/direnv/direnv) can automatically do this for you, when you change into the directory. - 1. Install the necessary dependencies by running `bun install`. 2. Start the development server by running `bun dev`. diff --git a/bun.lockb b/bun.lockb index 3d11ebc..fad52ca 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/flake.lock b/flake.lock deleted file mode 100644 index c69572f..0000000 --- a/flake.lock +++ /dev/null @@ -1,25 +0,0 @@ -{ - "nodes": { - "nixpkgs": { - "locked": { - "lastModified": 1734083684, - "narHash": "sha256-5fNndbndxSx5d+C/D0p/VF32xDiJCJzyOqorOYW4JEo=", - "rev": "314e12ba369ccdb9b352a4db26ff419f7c49fa84", - "revCount": 711150, - "type": "tarball", - "url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.2411.711150%2Brev-314e12ba369ccdb9b352a4db26ff419f7c49fa84/0193c701-367f-7052-bef0-8f30cc5e4be1/source.tar.gz" - }, - "original": { - "type": "tarball", - "url": "https://flakehub.com/f/NixOS/nixpkgs/%2A" - } - }, - "root": { - "inputs": { - "nixpkgs": "nixpkgs" - } - } - }, - "root": "root", - "version": 7 -} diff --git a/flake.nix b/flake.nix deleted file mode 100644 index 682cba3..0000000 --- a/flake.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ - description = "A Nix-flake-based Bun development environment"; - inputs = { - nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/*"; - }; - outputs = { self, nixpkgs }: - let - supportedSystems = [ "x86_64-linux" "aarch64-darwin" "x86_64-darwin" "aarch64-linux" ]; - forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f { - pkgs = import nixpkgs { inherit system; }; - }); - in { - devShells = forEachSupportedSystem ({ pkgs }: { - default = pkgs.mkShell { - packages = with pkgs; [ - bun - ]; - }; - }); - }; -} diff --git a/package.json b/package.json index b339963..8812dcb 100644 --- a/package.json +++ b/package.json @@ -17,28 +17,28 @@ "dependencies": { "@astrojs/partytown": "^2.1.4", "@fontsource-variable/roboto-mono": "^5.2.6", - "@tailwindcss/vite": "^4.1.11", - "astro": "^5.11.0", + "@tailwindcss/vite": "^4.1.13", + "astro": "^5.13.7", "mdast-util-to-string": "^4.0.0", "reading-time": "^1.5.0", - "tailwindcss": "^4.1.11" + "tailwindcss": "^4.1.13" }, "devDependencies": { "@commitlint/cli": "^19.8.1", "@commitlint/config-conventional": "^19.8.1", - "@eslint/js": "^9.30.1", + "@eslint/js": "^9.35.0", "@tailwindcss/typography": "^0.5.16", - "@typescript-eslint/parser": "^8.35.1", + "@typescript-eslint/parser": "^8.43.0", "astro-eslint-parser": "^1.2.2", - "eslint": "^9.30.1", + "eslint": "^9.35.0", "eslint-plugin-astro": "^1.3.1", "husky": "^9.1.7", "prettier": "^3.6.2", "prettier-plugin-astro": "^0.14.1", - "prettier-plugin-tailwindcss": "^0.6.13", + "prettier-plugin-tailwindcss": "^0.6.14", "rehype-katex": "^7.0.1", "rehype-mathjax": "^7.1.0", "remark-math": "^6.0.0", - "typescript-eslint": "^8.35.1" + "typescript-eslint": "^8.43.0" } }