Skip to content

Commit

Permalink
minor(deps): update dependency @slidev/cli to v0.49.3 (#410)
Browse files Browse the repository at this point in the history
* 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
renovate[bot] and tboerger committed May 23, 2024
1 parent 0ebd2c0 commit b9851f0
Show file tree
Hide file tree
Showing 6 changed files with 4,182 additions and 3,083 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup nodejs
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20.x

- name: Install deps
run: npm ci
Expand All @@ -39,7 +39,7 @@ jobs:
env:
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
uses: netlify/actions/cli@master
uses: South-Paw/action-netlify-cli@v2
with:
args: deploy --prod --dir dist/

Expand Down
6 changes: 5 additions & 1 deletion .gitignore
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
61 changes: 61 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 31 additions & 0 deletions flake.nix
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
];
};
}
);
}
Loading

0 comments on commit b9851f0

Please sign in to comment.