File tree 4 files changed +12
-5
lines changed
4 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ library
26
26
, bytestring
27
27
, directory
28
28
, hashable
29
- , sqlite-simple
29
+ , sqlite-simple == 0.4.18.0
30
30
, text
31
31
, transformers
32
32
exposed-modules : CodeWorld.Account
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ library
21
21
ghc-options : -W
22
22
-Wall
23
23
-fwarn-unused-imports
24
- build-depends : aeson
24
+ build-depends : aeson < 2.0.0
25
25
, base >= 4.7 && < 5
26
26
, base64-bytestring
27
27
, bytestring
@@ -31,7 +31,7 @@ library
31
31
, directory
32
32
, filepath
33
33
, http-conduit
34
- , jwt >= 0.10.0
34
+ , jwt == 0.10.1
35
35
, snap-core
36
36
, split
37
37
, text
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ Executable codeworld-server
40
40
filelock,
41
41
filepath,
42
42
haskell-src-exts < 1.21 ,
43
- http-conduit,
43
+ http-conduit >= 2.3.0 && < 2.3.9 ,
44
44
lifted-base,
45
45
memory,
46
46
mtl,
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ if [ ! -f $BUILD/progress/system-pkgs ]; then
76
76
run . sudo apt-get install -y psmisc
77
77
78
78
run . sudo apt-get install -y zlib1g-dev
79
- run . sudo apt-get install -y libncurses5{, -dev}
79
+ run . sudo apt-get install -y libncurses -dev
80
80
81
81
# Needed for GHC
82
82
run . sudo apt-get install -y make
@@ -86,6 +86,13 @@ if [ ! -f $BUILD/progress/system-pkgs ]; then
86
86
87
87
# Needed for GHCJS
88
88
run . sudo apt-get install -y gnupg
89
+ # If there is version depreciation warning for nodejs,
90
+ # Feel free to ignore the below two commands and install nodejs manually in root directory
91
+ # Install Node 12 -> $nvm install 12.22.12
92
+ # Install specific npm version -> $npm install -g [email protected]
93
+ # Verify versions
94
+ # $node --version Should show v12.22.12
95
+ # $npm --version Should show 6.14.16
89
96
run --quiet . curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
90
97
run . sudo apt-get install -y nodejs
91
98
You can’t perform that action at this time.
0 commit comments