i think i might go insane
All checks were successful
Actions / Build Plugins (push) Successful in 26s
Actions / Build Plugins (pull_request) Successful in 39s

This commit is contained in:
cswimr 2024-12-23 17:08:44 -05:00
parent 53ff052229
commit 99c8d83a80
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087
6 changed files with 941 additions and 1 deletions

2
.gitignore vendored
View file

@ -3,3 +3,5 @@
dist dist
node_modules node_modules
.idea .idea
.yarn/*
!.yarn/releases

Binary file not shown.

934
.yarn/releases/yarn-4.5.3.cjs vendored Executable file

File diff suppressed because one or more lines are too long

View file

@ -3,3 +3,5 @@ nodeLinker: node-modules
npmScopes: npmScopes:
jsr: jsr:
npmRegistryServer: "https://npm.jsr.io" npmRegistryServer: "https://npm.jsr.io"
yarnPath: .yarn/releases/yarn-4.5.3.cjs

View file

@ -41,6 +41,7 @@
# https://devenv.sh/reference/options/ # https://devenv.sh/reference/options/
languages.javascript = { languages.javascript = {
enable = true; enable = true;
corepack.enable = true;
yarn = { yarn = {
enable = true; enable = true;
package = pkgs.yarn-berry; package = pkgs.yarn-berry;

View file

@ -38,5 +38,6 @@
"prettier": "^3.4.2", "prettier": "^3.4.2",
"typescript": "^5.7.2", "typescript": "^5.7.2",
"typescript-eslint": "^8.18.1" "typescript-eslint": "^8.18.1"
} },
"packageManager": "yarn@4.5.3"
} }