Wilker Lúcio

Results 33 issues of Wilker Lúcio

Hello, I'm trying to use oops to interop with [Automerge](https://github.com/automerge/automerge). This snippet fails to make an update: ```clojure (oset+ doc "todos" (str idx) "done" true) ``` The browser complaints that:...

While developing here I'm noticing that I'm having to manual reload a lot (mostly by renaming the card that I'm working on). I saw what you said about data reloading...

hi, I have this snippet: ``` .header-content-administration a { color: #c00 !important; } ``` but it fails to compile, says unexpected !, but it's a totally valid CSS

Seems like those attributes conflict for the same purpose, must be checked and if it's the case, remove one of them, otherwise get docs explaining the distinction.

When a resolver throws an error, it must not cache that error value. As of now, it does cache that error value, and in case it's a persistent cache you...

bug
design phase

In the new strict mode, an attribute failure may happen because: 1. Attribute is unknown in the index 2. Attribute exists in the index, but available data isn't enough to...

enhancement

Allow a user query to extend a nested input from a resolver. In the following example scenario: ```clojure (pco/defresolver all-people3 [{:swapi.Root/keys [allPeople]}] {::pco/input [{:swapi.Root/allPeople [{:swapi.PeopleConnection/people [:swapi.types/Person]}]}] ::pco/output [{:swapi/all-people [:swapi.types/Person]}]} {:swapi/all-people...

enhancement
dynamic resolvers
design phase

Currently, in the case of lenient mode, errors are not propagated back. Need to explore combinations of lenient vs non-lenient parsers connecting and see how the errors should propagate.

design phase

Hi, I'm trying to use the cljsbuild as part of my release, so I have this: ``` clojure { :release-tasks [["cljsbuild" "clean"] ["cljsbuild" "once" "release"] ["node-webkit-build"] ["app-release" "update-package-json"]] } ```...

Needs Repro