Skip to content

Commit

Permalink
Cleanup before release
Browse files Browse the repository at this point in the history
  • Loading branch information
marcgrue committed Mar 4, 2021
1 parent 6a80efe commit a5e9882
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ lazy val molecule = crossProject(JSPlatform, JVMPlatform)
.crossType(CrossType.Full)
.settings(
Settings.base ++
Publish.withoutDocs // save time without doc creation for publishLocal
// Publish.withDocs // make docs for publishSigned
// Publish.withoutDocs // save time without doc creation for publishLocal
Publish.withDocs // make docs for publishSigned
)
.jsSettings(Settings.js)
// .jsConfigure(_.enablePlugins(TzdbPlugin))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package molecule.core.expression

import java.net.URI
import java.util.{Date, UUID}
import molecule.core.ast.elements
import molecule.core.ast.elements._

/** Logic expression implicits to build OR/AND logic.
Expand All @@ -11,7 +10,7 @@ import molecule.core.ast.elements._
* }}}
*
* @groupname attrLogicImplicits Expression implicits
* @groupdesc attrLogicImplicits Turns basic types into `TermValue`'s that can be used in [[elements.Expression Expression]]
* @groupdesc attrLogicImplicits Turns basic types into `TermValue`'s that can be used in [[Expression Expression]]
* @groupprio attrLogicImplicits 21
*/
trait LogicImplicits {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package molecule.datomic.base.ast
import molecule.core.ast.elements
import molecule.core.ast.elements.Model
import molecule.datomic.base.transform.Query2String
import molecule.core.util.Helpers

Expand All @@ -19,7 +19,7 @@ object query extends Helpers {
* <br><br>
* Custom DSL molecule --> Model --> Query --> Datomic query string
* <br><br>
* Query is thus derived from [[elements.Model Model]] representation.
* Query is thus derived from [[Model Model]] representation.
*
* @param f Find parameters
* @param wi With parameters
Expand Down

0 comments on commit a5e9882

Please sign in to comment.