Skip to content

Commit

Permalink
Bump shadow and aniseed
Browse files Browse the repository at this point in the history
  • Loading branch information
Olical committed Apr 18, 2020
1 parent c4b8655 commit 2dc9f0c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions lua/conjure/aniseed/core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -586,11 +586,11 @@ do
local v_23_0_ = nil
do
local v_23_0_0 = nil
local function slurp0(path)
local function slurp0(path, silent_3f)
local _3_0, _4_0 = io.open(path, "r")
if ((_3_0 == nil) and (nil ~= _4_0)) then
local msg = _4_0
return println(("Could not open file: " .. msg))
return nil
elseif (nil ~= _3_0) then
local f = _3_0
do
Expand All @@ -616,7 +616,7 @@ do
local _3_0, _4_0 = io.open(path, "w")
if ((_3_0 == nil) and (nil ~= _4_0)) then
local msg = _4_0
return println(("Could not open file: " .. msg))
return error(("Could not open file: " .. msg))
elseif (nil ~= _3_0) then
local f = _3_0
do
Expand Down
2 changes: 1 addition & 1 deletion lua/conjure/aniseed/nvim/util.lua
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ do
local v_23_0_0 = nil
local function fn_bridge0(viml_name, mod, lua_name, opts)
local _3_ = (opts or {})
local range = _3_["range"]
local _return = _3_["return"]
local range = _3_["range"]
local function _4_()
if range then
return " range"
Expand Down
4 changes: 2 additions & 2 deletions lua/conjure/aniseed/test.lua
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ do
local function display_results0(results, prefix)
do
local _3_ = results
local assertions_passed = _3_["assertions-passed"]
local assertions = _3_["assertions"]
local tests = _3_["tests"]
local tests_passed = _3_["tests-passed"]
local assertions_passed = _3_["assertions-passed"]
local tests = _3_["tests"]
local function _4_()
if ok_3f(results) then
return "OK"
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"dependencies": {},
"devDependencies": {
"shadow-cljs": "^2.8.96"
"shadow-cljs": "^2.8.97"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
Expand Down

0 comments on commit 2dc9f0c

Please sign in to comment.