mirror of
https://github.com/daylinmorgan/nimpkgs.git
synced 2024-12-21 18:50:43 -06:00
Compare commits
3 commits
f820cd86bc
...
3509478921
Author | SHA1 | Date | |
---|---|---|---|
3509478921 | |||
7fd7948965 | |||
4a7336a6d2 |
4 changed files with 1762 additions and 1765 deletions
|
@ -13,12 +13,12 @@
|
|||
},
|
||||
"karax": {
|
||||
"version": "1.3.3",
|
||||
"vcsRevision": "b125b6f23e56e9d88068758aa56635a721782009",
|
||||
"vcsRevision": "d3febfc15daa4771e9e53d5ba8a87531dd259ed0",
|
||||
"url": "https://github.com/daylinmorgan/karax",
|
||||
"downloadMethod": "git",
|
||||
"dependencies": [],
|
||||
"checksums": {
|
||||
"sha1": "4c2cd8c8c6642919a81be12d7535323e7073f47e"
|
||||
"sha1": "8abc752c46a5e8a5086ad9fc548d28a3065579dd"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
18
package.json
18
package.json
|
@ -11,16 +11,16 @@
|
|||
"author": "Daylin Morgan",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@catppuccin/palette": "^1.2.0",
|
||||
"@iconify-json/mdi": "^1.1.68",
|
||||
"@iconify-json/simple-icons": "^1.1.113",
|
||||
"@catppuccin/palette": "^1.7.1",
|
||||
"@iconify-json/mdi": "^1.2.1",
|
||||
"@iconify-json/simple-icons": "^1.2.11",
|
||||
"@types/promise-fs": "^2.1.5",
|
||||
"@unocss/cli": "^0.62.2",
|
||||
"@unocss/preset-icons": "^0.62.2",
|
||||
"@unocss/reset": "^0.62.2",
|
||||
"concurrently": "^8.2.2",
|
||||
"esbuild": "^0.23.1",
|
||||
"@unocss/cli": "^0.64.1",
|
||||
"@unocss/preset-icons": "^0.64.1",
|
||||
"@unocss/reset": "^0.64.1",
|
||||
"concurrently": "^9.1.0",
|
||||
"esbuild": "^0.24.0",
|
||||
"http-server": "^14.1.1",
|
||||
"unocss": "^0.62.2"
|
||||
"unocss": "^0.64.1"
|
||||
}
|
||||
}
|
||||
|
|
3501
pnpm-lock.yaml
3501
pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
|
@ -7,7 +7,7 @@ import packages, utils
|
|||
export tables
|
||||
|
||||
type
|
||||
Context* = object
|
||||
Context* = ref object
|
||||
nimpkgs*: NimPkgs
|
||||
loaded*: bool
|
||||
|
||||
|
@ -18,7 +18,7 @@ let nimpkgsUrl =
|
|||
else: "https://raw.githubusercontent.com/nimpkgs/nimpkgs/main/nimpkgs.json"
|
||||
|
||||
|
||||
proc fetchPackages*(ctx: var Context){.async.} =
|
||||
proc fetchPackages*(ctx: Context){.async.} =
|
||||
await fetch(nimpkgsUrl.jss)
|
||||
.then((r: Response) => r.text())
|
||||
.then(proc(txt: kstring) =
|
||||
|
|
Loading…
Reference in a new issue