Skip to content

Commit

Permalink
Merge pull request #269 from justinwoo/updates
Browse files Browse the repository at this point in the history
update packages
  • Loading branch information
justinwoo authored Feb 26, 2019
2 parents 61d4f95 + 136af8d commit 0681dec
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 17 deletions.
16 changes: 16 additions & 0 deletions UPDATE
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/usr/bin/env bash

# Updates entries in packages.json from Spacchetti

for target in $(jq 'keys[]' packages.json -r)
do
entry=$(jq ".\"$target\"" ../spacchetti/packages.json -r)
if [[ $entry != 'null' ]]
then
jq ".\"$target\" = $entry" packages.json > temp.json
mv temp.json packages.json
echo "updated $target"
else
echo "doesn't exist in spacchetti: $target"
fi
done
34 changes: 17 additions & 17 deletions packages.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"web-xhr"
],
"repo": "https://github.com/slamdata/purescript-affjax.git",
"version": "v7.0.2"
"version": "v8.0.0"
},
"ansi": {
"dependencies": [
Expand Down Expand Up @@ -256,7 +256,7 @@
"record",
"typelevel-prelude"
],
"repo": "https://github.com/justinwoo/purescript-choco-pie.git",
"repo": "https://github.com/justinwoo/purescript-chocopie.git",
"version": "v3.0.0"
},
"colors": {
Expand Down Expand Up @@ -421,7 +421,7 @@
"web-touchevents"
],
"repo": "https://github.com/slamdata/purescript-dom-indexed.git",
"version": "v6.0.0"
"version": "v7.0.0"
},
"effect": {
"dependencies": [
Expand Down Expand Up @@ -1080,7 +1080,7 @@
"typelevel-prelude"
],
"repo": "https://github.com/justinwoo/purescript-milkis.git",
"version": "v6.0.1"
"version": "v6.1.0"
},
"minibench": {
"dependencies": [
Expand Down Expand Up @@ -1370,7 +1370,7 @@
"unsafe-coerce"
],
"repo": "https://github.com/purescript/purescript-ordered-collections.git",
"version": "v1.5.0"
"version": "v1.6.0"
},
"orders": {
"dependencies": [
Expand Down Expand Up @@ -1852,7 +1852,7 @@
"variant"
],
"repo": "https://github.com/justinwoo/purescript-simple-json.git",
"version": "v4.4.0"
"version": "v4.4.1"
},
"smolder": {
"dependencies": [
Expand Down Expand Up @@ -2160,7 +2160,7 @@
"tuples"
],
"repo": "https://github.com/fehrenbach/purescript-unordered-collections.git",
"version": "v1.6.0"
"version": "v1.7.0"
},
"unsafe-coerce": {
"dependencies": [],
Expand Down Expand Up @@ -2204,14 +2204,14 @@
"web-html"
],
"repo": "https://github.com/purescript-web/purescript-web-clipboard.git",
"version": "v1.0.0"
"version": "v2.0.0"
},
"web-dom": {
"dependencies": [
"web-events"
],
"repo": "https://github.com/purescript-web/purescript-web-dom.git",
"version": "v1.0.0"
"version": "v2.0.0"
},
"web-events": {
"dependencies": [
Expand All @@ -2220,7 +2220,7 @@
"nullable"
],
"repo": "https://github.com/purescript-web/purescript-web-events.git",
"version": "v1.0.1"
"version": "v2.0.0"
},
"web-file": {
"dependencies": [
Expand All @@ -2229,7 +2229,7 @@
"web-dom"
],
"repo": "https://github.com/purescript-web/purescript-web-file.git",
"version": "v1.2.0"
"version": "v2.0.0"
},
"web-html": {
"dependencies": [
Expand All @@ -2239,37 +2239,37 @@
"web-storage"
],
"repo": "https://github.com/purescript-web/purescript-web-html.git",
"version": "v1.2.0"
"version": "v2.0.0"
},
"web-socket": {
"dependencies": [
"arraybuffer-types",
"web-file"
],
"repo": "https://github.com/purescript-web/purescript-web-socket.git",
"version": "v1.0.0"
"version": "v2.0.0"
},
"web-storage": {
"dependencies": [
"nullable",
"web-events"
],
"repo": "https://github.com/purescript-web/purescript-web-storage.git",
"version": "v2.0.0"
"version": "v3.0.0"
},
"web-touchevents": {
"dependencies": [
"web-uievents"
],
"repo": "https://github.com/purescript-web/purescript-web-touchevents.git",
"version": "v1.0.0"
"version": "v2.0.0"
},
"web-uievents": {
"dependencies": [
"web-html"
],
"repo": "https://github.com/purescript-web/purescript-web-uievents.git",
"version": "v1.1.0"
"version": "v2.0.0"
},
"web-xhr": {
"dependencies": [
Expand All @@ -2280,7 +2280,7 @@
"web-file"
],
"repo": "https://github.com/purescript-web/purescript-web-xhr.git",
"version": "v2.0.0"
"version": "v3.0.0"
},
"webaudio": {
"dependencies": [
Expand Down

0 comments on commit 0681dec

Please sign in to comment.