Skip to content

Commit

Permalink
switching to deps-library
Browse files Browse the repository at this point in the history
  • Loading branch information
tiye committed Mar 6, 2020
1 parent 17360c1 commit bedaf15
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 41 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ jobs:
- run: echo Working on ${{ github.ref }}

- name: deploy to clojars
run: clojure -A:depstar && env CLOJARS_USERNAME=jiyinyiyong CLOJARS_PASSWORD=${{ secrets.CLOJARS_PASSWORD }} clojure -A:deploy
run: env CLOJARS_USERNAME=jiyinyiyong CLOJARS_PASSWORD=${{ secrets.CLOJARS_PASSWORD }} clojure -A:release
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
.nrepl-port

.DS_Store
pom.xml
18 changes: 11 additions & 7 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@

{:paths ["src"]
:aliases {:depstar {:extra-deps {seancorfield/depstar {:mvn/version "0.5.2"}}
:main-opts ["-m" "hf.depstar.jar" "target/lilac.jar"]}
:deploy {:extra-deps {deps-deploy {:mvn/version "RELEASE"}}
:main-opts ["-m" "deps-deploy.deps-deploy" "deploy" "target/lilac.jar"]}
:install {:extra-deps {deps-deploy {:mvn/version "RELEASE"}}
:main-opts ["-m" "deps-deploy.deps-deploy" "install" "target/lilac.jar"]}}}
{
:paths ["src"]
:aliases {
:release {
:extra-deps {
appliedscience/deps-library {:mvn/version "0.3.2"}
}
:main-opts ["-m" "deps-library.release"]
}
}
}
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
"description": "ClojureScript workflow using Calcit Editor",
"main": "index.js",
"scripts": {
"m2": "clojure -A:depstar && clojure -A:install",
"deploy": "clojure -A:depstar && clojure -A:deploy",
"deploy": "clj -A:release",
"watch": "shadow-cljs watch client",
"serve": "http-server dist -s",
"build-cdn": "shadow-cljs clj-run build.main/build-cdn",
Expand Down
31 changes: 0 additions & 31 deletions pom.xml

This file was deleted.

5 changes: 5 additions & 0 deletions release.edn
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{:version "0.0.1"
:group-id "mvc-works"
:artifact-id "calcit-workflow"
:skip-tag true
:scm-url "https://github.com/mvc-works/calcit-workflow"}

0 comments on commit bedaf15

Please sign in to comment.