mirror of
https://github.com/daylinmorgan/nimpkgs.git
synced 2024-11-12 14:53:15 -06:00
switch to nimble
This commit is contained in:
parent
52b78b8f60
commit
97134d4ea8
3 changed files with 57 additions and 0 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -140,3 +140,6 @@ src/*.js
|
|||
|
||||
# for debugging
|
||||
site/nimpkgs.json
|
||||
# nimble.develop
|
||||
nimble.paths
|
||||
nimbledeps
|
||||
|
|
|
@ -15,3 +15,8 @@ task watch, "rebuild on change":
|
|||
"nim js -d:packagesHash:master -o:site/app.js src/app.nim"
|
||||
)
|
||||
|
||||
# begin Nimble config (version 2)
|
||||
--noNimblePath
|
||||
when withDir(thisDir(), system.fileExists("nimble.paths")):
|
||||
include "nimble.paths"
|
||||
# end Nimble config
|
||||
|
|
49
nimble.lock
Normal file
49
nimble.lock
Normal file
|
@ -0,0 +1,49 @@
|
|||
{
|
||||
"version": 2,
|
||||
"packages": {
|
||||
"dotenv": {
|
||||
"version": "2.0.2",
|
||||
"vcsRevision": "a3c6726147276ea1447dee292fd27bb036242b78",
|
||||
"url": "https://github.com/euantorano/dotenv.nim",
|
||||
"downloadMethod": "git",
|
||||
"dependencies": [],
|
||||
"checksums": {
|
||||
"sha1": "1e70fc63c286ca3da7592d61dbe501fcea35bc72"
|
||||
}
|
||||
},
|
||||
"jsony": {
|
||||
"version": "1.1.5",
|
||||
"vcsRevision": "ea811bec7fa50f5abd3088ba94cda74285e93f18",
|
||||
"url": "https://github.com/treeform/jsony",
|
||||
"downloadMethod": "git",
|
||||
"dependencies": [],
|
||||
"checksums": {
|
||||
"sha1": "6aeb83e7481ca8686396a568096054bc668294df"
|
||||
}
|
||||
},
|
||||
"ws": {
|
||||
"version": "0.5.0",
|
||||
"vcsRevision": "9536bf99ddf5948db221ccb7bb3663aa238a8e21",
|
||||
"url": "https://github.com/treeform/ws",
|
||||
"downloadMethod": "git",
|
||||
"dependencies": [],
|
||||
"checksums": {
|
||||
"sha1": "ae4daf4ae302d0431f3c2d385ae9d2fe767a3246"
|
||||
}
|
||||
},
|
||||
"karax": {
|
||||
"version": "1.3.3",
|
||||
"vcsRevision": "d86349c63d8ece330d749eb037a9fa5ffca87c79",
|
||||
"url": "https://github.com/karaxnim/karax/",
|
||||
"downloadMethod": "git",
|
||||
"dependencies": [
|
||||
"ws",
|
||||
"dotenv"
|
||||
],
|
||||
"checksums": {
|
||||
"sha1": "6683189b4456437c2809be72e3404adde77f5c34"
|
||||
}
|
||||
}
|
||||
},
|
||||
"tasks": {}
|
||||
}
|
Loading…
Reference in a new issue