-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b7208b2
commit 352d50a
Showing
30 changed files
with
659 additions
and
571 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,7 +1,7 @@ | ||
.DS_Store | ||
node_modules | ||
/dist | ||
|
||
.direnv | ||
|
||
# local env files | ||
.env.local | ||
|
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
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,45 @@ | ||
{ | ||
description = "isabelroses.com flake"; | ||
|
||
inputs = { | ||
nixpkgs.url = "github:NixOS/nixpkgs"; | ||
flake-utils.url = "github:numtide/flake-utils"; | ||
}; | ||
|
||
outputs = { | ||
nixpkgs, | ||
flake-utils, | ||
... | ||
}: | ||
flake-utils.lib.eachDefaultSystem ( | ||
system: let | ||
pkgs = import nixpkgs {inherit system;}; | ||
in { | ||
devShells.default = pkgs.mkShellNoCC { | ||
name = "isabelroses.com"; | ||
packages = with pkgs; let | ||
mkNpxAlias = name: writeShellScriptBin name "npx ${name} \"$@\""; | ||
in [ | ||
(nodePackages.yarn.override {inherit nodejs_20;}) | ||
nodejs_20 | ||
eslint_d | ||
prettierd | ||
(mkNpxAlias "tsc") | ||
(mkNpxAlias "tsserver") | ||
|
||
# for python gen script | ||
python3 | ||
# python3.withPackages | ||
# ( | ||
# with python311Packages; [ | ||
# pathlib | ||
# pyyaml | ||
# feedgen | ||
# pytz | ||
# ] | ||
# ) | ||
]; | ||
}; | ||
} | ||
); | ||
} |
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,33 +1,33 @@ | ||
{ | ||
"name": "isabelroses.com", | ||
"version": "0.1.0", | ||
"private": true, | ||
"scripts": { | ||
"dev": "vite", | ||
"preview": "vite preview", | ||
"build": "vue-tsc --noEmit && vite build" | ||
}, | ||
"dependencies": { | ||
"@fortawesome/fontawesome-free": "^6.5.1", | ||
"highlight.js": "^11.9.0", | ||
"marked": "^11.1.0", | ||
"marked-highlight": "^2.1.0", | ||
"vue": "^3.3.13", | ||
"vue-router": "^4.1.6" | ||
}, | ||
"devDependencies": { | ||
"@types/jquery": "^3.5.16", | ||
"@types/jqueryui": "^1.12.16", | ||
"@types/marked": "^6.0.0", | ||
"@types/node": "^20", | ||
"@vitejs/plugin-vue": "^5.0.0", | ||
"eslint": "^8.56.0", | ||
"sass": "^1.58.3", | ||
"tslib": "^2.5.0", | ||
"typescript": "^5", | ||
"vite": "^5.0.10", | ||
"vue-class-component": "^8.0.0-rc.1", | ||
"vue-property-decorator": "^10.0.0-rc.3", | ||
"vue-tsc": "^1.8.26" | ||
} | ||
} | ||
"name": "isabelroses.com", | ||
"version": "0.1.0", | ||
"private": true, | ||
"scripts": { | ||
"dev": "vite", | ||
"preview": "vite preview", | ||
"build": "vue-tsc --noEmit && vite build" | ||
}, | ||
"dependencies": { | ||
"@fortawesome/fontawesome-free": "^6.5.1", | ||
"highlight.js": "^11.9.0", | ||
"marked": "^11.1.0", | ||
"marked-highlight": "^2.1.0", | ||
"vue": "^3.3.13", | ||
"vue-router": "^4.1.6" | ||
}, | ||
"devDependencies": { | ||
"@types/jquery": "^3.5.16", | ||
"@types/jqueryui": "^1.12.16", | ||
"@types/marked": "^6.0.0", | ||
"@types/node": "^20", | ||
"@vitejs/plugin-vue": "^5.0.0", | ||
"eslint": "^8.56.0", | ||
"sass": "^1.58.3", | ||
"tslib": "^2.5.0", | ||
"typescript": "^5", | ||
"vite": "^5.0.10", | ||
"vue-class-component": "^8.0.0-rc.1", | ||
"vue-property-decorator": "^10.0.0-rc.3", | ||
"vue-tsc": "^1.8.26" | ||
} | ||
} |
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
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
Oops, something went wrong.