Skip to content

Commit

Permalink
ixx: init
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelCoding committed Oct 12, 2024
1 parent 26ed20b commit 608e551
Show file tree
Hide file tree
Showing 8 changed files with 4,556 additions and 5,414 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,5 @@ Thumbs.db

# CUSTOM
result
/public/meta
/public/index.ixx
10 changes: 9 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,19 @@
in
{
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
nativeBuildInputs = with pkgs; [
nodejs
pnpm
(python3.withPackages (ps: with ps; [ markdown pygments ]))

cargo
clippy
rustc
rustc.llvmPackages.lld
wasm-pack
];

RUST_SRC_PATH = pkgs.rust.packages.stable.rustPlatform.rustLibSrc;
};

packages = rec {
Expand Down
2 changes: 1 addition & 1 deletion nix/frontend.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ stdenv.mkDerivation (finalAttrs: {

pnpmDeps = pnpm.fetchDeps {
inherit (finalAttrs) pname version src;
hash = "sha256-Ib3LtASKSLEnaLqa7nPIMX7I/FncL2pb7u7KcxaR4f8=";
hash = "sha256-darISSaTbuMexICff5BcD568d2snfJlgx8KD4o6Guno=";
};

nativeBuildInputs = [ nodejs pnpm.configHook ];
Expand Down
23 changes: 12 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,34 +12,35 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.7",
"@angular/common": "^18.2.7",
"@angular/compiler": "^18.2.7",
"@angular/core": "^18.2.7",
"@angular/forms": "^18.2.7",
"@angular/platform-browser": "^18.2.7",
"@angular/platform-browser-dynamic": "^18.2.7",
"@angular/router": "^18.2.7",
"@angular/animations": "^18.2.8",
"@angular/common": "^18.2.8",
"@angular/compiler": "^18.2.8",
"@angular/core": "^18.2.8",
"@angular/forms": "^18.2.8",
"@angular/platform-browser": "^18.2.8",
"@angular/platform-browser-dynamic": "^18.2.8",
"@angular/router": "^18.2.8",
"@feel/form": "^0.0.25",
"@feel/style": "^0.0.25",
"@fontsource/dm-mono": "^5.1.0",
"@fontsource/dm-sans": "^5.1.0",
"@nuschtos/fixx": "link:../ixx/result",
"rxjs": "~7.8.1",
"tslib": "^2.7.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.8",
"@angular/cli": "^18.2.8",
"@angular/compiler-cli": "^18.2.7",
"@angular/language-service": "^18.2.7",
"@angular/compiler-cli": "^18.2.8",
"@angular/language-service": "^18.2.8",
"@types/jasmine": "~5.1.4",
"jasmine-core": "~5.3.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"typescript": "~5.5.4"
"typescript": "~5.4.5"
}
}
Loading

0 comments on commit 608e551

Please sign in to comment.