Skip to content

Commit

Permalink
switch to deps-library; alpha release
Browse files Browse the repository at this point in the history
  • Loading branch information
tiye committed Mar 7, 2020
1 parent a830f51 commit 918c0df
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 13 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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Previews http://repo.quamolit.org/phlox/ .
[![Clojars Project](https://img.shields.io/clojars/v/quamolit/phlox.svg)](https://clojars.org/quamolit/phlox)

```edn
[quamolit/phlox "0.1.7"]
[quamolit/phlox "0.1.8-a1"]
```

`render!` to add canvas to `<body/>`:
Expand Down
23 changes: 14 additions & 9 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@

{:paths ["src" "macros"]
:deps {}
:aliases {:depstar {:extra-deps {seancorfield/depstar {:mvn/version "0.5.2"}}
:main-opts ["-m" "hf.depstar.jar" "target/phlox.jar"]}
:deploy {:extra-deps {deps-deploy {:mvn/version "RELEASE"}}
:main-opts ["-m" "deps-deploy.deps-deploy" "deploy" "target/phlox.jar"]}
:install {:extra-deps {deps-deploy {:mvn/version "RELEASE"}}
:main-opts ["-m" "deps-deploy.deps-deploy" "install" "target/phlox.jar"]}}}
{
:paths ["src" "macros"]
:deps {
mvc-works/lilac {:mvn/version "0.1.3"}
}
: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": "a PIXI DSL in ClojureScript",
"main": "index.js",
"scripts": {
"m2": "clojure -A:depstar && clojure -A:install",
"deploy": "clojure -A:depstar && CLOJARS_USERNAME=jiyinyiyong CLOJARS_PASSWORD=$CLOJARS_PASSWORD clojure -A:deploy",
"deploy": "clj -A:release",
"watch": "shadow-cljs watch client test",
"serve": "http-server dist -s",
"build-cdn": "shadow-cljs clj-run build.main/build-cdn",
Expand Down
6 changes: 6 additions & 0 deletions release.edn
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{:version "0.1.8-a1"
:group-id "quamolit"
:artifact-id "phlox"
:skip-tag true
:description "Pixi.js DSL in ClojureScript."
:scm-url "https://github.com/Quamolit/phlox"}

0 comments on commit 918c0df

Please sign in to comment.