Skip to content

Latest commit

 

History

History
85 lines (50 loc) · 1.63 KB

development.md

File metadata and controls

85 lines (50 loc) · 1.63 KB

Development

Socket REPL

clj -J-Dclojure.server.repl="{:port 5555 :accept clojure.core.server/repl}"

Then connect with inf-clojure-connect

Clojurescript REPL

lein with-profile +test-web,+cljs-repl repl
M-x cider-connect
(use 'figwheel-sidecar.repl-api)
(start-figwheel!)
(cljs-repl)
open http://localhost:3446/index.html

Running CLJS tests

Karma

lein with-profile test-web cljsbuild auto test ls ./resources/public/test-web/test.js | entr -s 'sleep 1; bin/tests'

Figwheel

clojure -A:test:figwheel-repl

Open http://localhost:9500/figwheel-extra-main/auto-testing

Running CLJ tests

lein with-profile +test-common test

or

lein with-profile +test-common test-refresh :changes-only

or (if you want to save a second or two)

clj -Atest:test-deps

or

bin/kaocha --watch --plugin profiling

Code coverage

bin/kaocha --plugin cloverage --cov-exclude-call expound.alpha/def

Readability and linting

./bin/inconsistent-aliases shows namespace aliases that are different across the codebase.

./bin/lint lints the code with joker

lein hiera generates a graph of namespace dependencies

Release

  1. Update version in project.clj
  2. Update CHANGELOG.md (including section for release and links at bottom)
  3. Update version in README.md
  4. Update version in package.json
  5. npm install
  6. git tag -a v0.7.2 -m "version 0.7.2"
  7. git push --tags

clojars

Double check version is changed in project.clj and lein deploy clojars (use deploy token instead of password)

NPM

Double check version is changed in package.json and npm publish --access=public