Skip to content

Commit

Permalink
remove verbosely; declare package with meyvn; bump 0.8.21
Browse files Browse the repository at this point in the history
  • Loading branch information
tiye committed Oct 8, 2018
1 parent 591add4 commit 75bb421
Show file tree
Hide file tree
Showing 10 changed files with 136 additions and 79 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Respo: A virtual DOM library in ClojureScript
[![Respo](https://img.shields.io/clojars/v/respo/respo.svg)](https://clojars.org/respo/respo)

```clojure
[respo "0.8.20"]
[respo "0.8.21"]
```

* Home http://respo-mvc.org
Expand Down
23 changes: 0 additions & 23 deletions build.boot

This file was deleted.

40 changes: 1 addition & 39 deletions calcit.edn

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

2 changes: 2 additions & 0 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

{:paths ["src" "polyfill"]}
9 changes: 9 additions & 0 deletions meyvn.edn
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

{:pom {:group-id "respo",
:artifact-id "respo",
:version "0.8.21",
:name "Respo: A virtual DOM library in ClojureScript."}
:packaging {:jar {:enabled true
:remote-repository {:id "clojars"
:url "https://clojars.org/repo"}}}
:scm {:enabled true}}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"dependencies": {},
"devDependencies": {
"http-server": "^0.11.1",
"shadow-cljs": "^2.6.7",
"shadow-cljs": "^2.6.10",
"source-map-support": "^0.5.9",
"ws": "^6.0.0"
"ws": "^6.1.0"
}
}
3 changes: 1 addition & 2 deletions shadow-cljs.edn
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@

{:source-paths ["src" "polyfill"]
:dependencies [[mvc-works/hsl "0.1.2"]
[mvc-works/verbosely "0.1.2"]]
:dependencies [[mvc-works/hsl "0.1.2"]]
:open-file-command ["subl" ["%s:%s:%s" :file :line :column]]
:builds {:app {:output-dir "target/"
:asset-path "."
Expand Down
6 changes: 2 additions & 4 deletions src/respo/comp/inspect.cljs
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@

(ns respo.comp.inspect
(:require [respo.macros :refer [defcomp pre <>]]
[hsl.core :refer [hsl]]
[respo.env :refer [data->native]]))
(:require [respo.macros :refer [defcomp pre <>]] [respo.env :refer [data->native]]))

(defn grab-info [data]
(cond
Expand All @@ -23,7 +21,7 @@

(def style-data
{:position :absolute,
:background-color (hsl 240 100 0),
:background-color "hsl(240,100%,0%)",
:color :white,
:opacity 0.2,
:font-size "12px",
Expand Down
3 changes: 1 addition & 2 deletions src/respo/render/expand.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
(:require [clojure.string :as string]
[respo.util.detect :refer [component? element? =seq]]
[respo.util.list :refer [filter-first pick-attrs]]
[respo.schema :as schema]
[verbosely.core :refer [log!]]))
[respo.schema :as schema]))

(declare render-children)

Expand Down
Loading

0 comments on commit 75bb421

Please sign in to comment.