-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
minor(deps): update dependency @slidev/cli to v0.49.3 (#410)
* minor(deps): update dependency @slidev/cli to v0.49.3 * fix: add windicss back, add flake and fix build --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Thomas Boerger <[email protected]>
- Loading branch information
1 parent
0ebd2c0
commit b9851f0
Showing
6 changed files
with
4,182 additions
and
3,083 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
node_modules | ||
.direnv | ||
.devenv | ||
|
||
/node_modules | ||
/dist | ||
/topics/*/node_modules | ||
|
||
components.d.ts |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
description = "Nix flake for development"; | ||
|
||
inputs = { | ||
nixpkgs = { | ||
url = "github:nixos/nixpkgs/nixpkgs-unstable"; | ||
}; | ||
|
||
utils = { | ||
url = "github:numtide/flake-utils"; | ||
}; | ||
}; | ||
|
||
outputs = { self, nixpkgs, utils }: | ||
utils.lib.eachDefaultSystem (system: | ||
let | ||
pkgs = import nixpkgs { | ||
inherit system; | ||
config = { allowUnfree = true; }; | ||
}; | ||
in | ||
{ | ||
devShell = pkgs.mkShell { | ||
buildInputs = with pkgs; [ | ||
nodejs_20 | ||
nodePackages.pnpm | ||
]; | ||
}; | ||
} | ||
); | ||
} |
Oops, something went wrong.