Skip to content

Commit 5288fcb

Browse files
authored
Merge branch 'main' into mf98
2 parents 5fb587c + 49c8af7 commit 5288fcb

File tree

4 files changed

+53
-9
lines changed

4 files changed

+53
-9
lines changed

flake.lock

Lines changed: 37 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,23 @@
44
inputs = {
55
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
66
flake-utils.url = "github:numtide/flake-utils";
7+
internal-helpers = {
8+
url = "github:ut-code/internal-helpers";
9+
inputs.nixpkgs.url = "nixpkgs";
10+
};
711
};
812

913
outputs = {
1014
nixpkgs,
1115
flake-utils,
16+
internal-helpers,
1217
...
1318
}:
1419
flake-utils.lib.eachDefaultSystem (system: let
1520
pkgs = nixpkgs.legacyPackages.${system};
1621
in {
17-
devShells.default = pkgs.callPackage ./shell.nix {};
22+
devShells.default = pkgs.callPackage ./shell.nix {
23+
inherit internal-helpers;
24+
};
1825
});
1926
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,19 @@
3838
"date-fns": "^4.1.0",
3939
"markdown-to-txt": "^2.0.1",
4040
"sharp": "^0.34.2",
41-
"svelte": "^5.33.1"
41+
"svelte": "^5.33.1",
42+
"tailwindcss": "^4.1.7",
43+
"@tailwindcss/vite": "^4.1.7"
4244
},
4345
"devDependencies": {
4446
"@astrojs/check": "^0.9.4",
4547
"@biomejs/biome": "^1.9.4",
46-
"@tailwindcss/vite": "^4.1.7",
4748
"lefthook": "^1.11.13",
4849
"prettier": "^3.5.3",
4950
"prettier-plugin-astro": "^0.14.1",
5051
"prettier-plugin-svelte": "^3.4.0",
5152
"prettier-plugin-tailwindcss": "^0.6.11",
5253
"rollup-plugin-visualizer": "^5.14.0",
53-
"tailwindcss": "^4.1.7",
5454
"typescript": "^5.8.3"
5555
}
5656
}

shell.nix

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
{pkgs ? import <nixpkgs> {}}:
1+
{
2+
pkgs ? import <nixpkgs> {},
3+
internal-helpers ? builtins.getFlake "github:ut-code/internal-helpers"
4+
}:
25
pkgs.mkShell {
36
packages = [
47
pkgs.bun
58
pkgs.nodejs-slim # required by astro to find sharp
69
pkgs.ffmpeg
710
pkgs.imagemagick
11+
internal-helpers.packages.${pkgs.system}.disallow-large-dir
812
];
913
}

0 commit comments

Comments
 (0)