This should work now.

This commit is contained in:
Daniel Ziltener 2020-05-31 16:20:50 +02:00
parent 11018f613b
commit 3bdd2c8504
119 changed files with 38 additions and 2 deletions

View File

@ -9,4 +9,9 @@
org.clojure/data.json {:mvn/version "1.0.0"}
com.fulcrologic/fulcro {:mvn/version "3.2.9" :scope "provided"}
thheller/shadow-cljs {:mvn/version "2.9.10"}
nubank/workspaces {:mvn/version "1.0.15"}}}}}
nubank/workspaces {:mvn/version "1.0.15"}}}
:jar {:extra-deps {seancorfield/depstar {:mvn/version "1.0.94"}}
:main-opts ["-m" "hf.depstar.jar" "target/carbon-wrapper.jar"]}
:deploy {:extra-deps {deps-deploy {:mvn/version "RELEASE"}}
:main-opts ["-m" "deps-deploy.deps-deploy" "deploy"
"target/carbon-wrapper.jar"]}}}

26
pom.xml Normal file
View File

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>ch.lyrion</groupId>
<artifactId>carbon-wrapper</artifactId>
<version>1.0.2</version>
<name>carbon-wrapper</name>
<dependencies>
</dependencies>
<build>
<sourceDirectory>src/main</sourceDirectory>
</build>
<repositories>
<repository>
<id>clojars</id>
<url>https://repo.clojars.org/</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>clojars</id>
<name>Clojars repository</name>
<url>https://clojars.org/repo</url>
</repository>
</distributionManagement>
</project>

View File

@ -70,7 +70,7 @@
(let [displayName (guess-display-name file displayName)
class displayName
factory-name (str "ui-" (hyphenated class))
filename (str "src/main/ch/lyrion/carbon/" (hyphenated subdir) "/" (str/replace factory-name #"-" "_") ".cljs")
filename (str "src/main/ch/lyrion/carbon/" (str/replace (hyphenated subdir) #"-" "_") "/" (str/replace factory-name #"-" "_") ".cljs")
nns (str "ch.lyrion.carbon." (hyphenated subdir) "." factory-name)
include-file (str "carbon-components-react/lib/components/" subdir "/" file)
docstring (gen-docstring docs)]

Some files were not shown because too many files have changed in this diff Show More