Skip to content

Commit

Permalink
fixup! WIP - Add previous result in step functions, mocked functions
Browse files Browse the repository at this point in the history
  • Loading branch information
arichiardi committed Apr 13, 2020
1 parent d0c6e41 commit 1a87d13
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 10 deletions.
14 changes: 8 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@elchache/fonda",
"version": "0.0.1",
"name": "fonda",
"version": "1.0.0-alpha.1",
"description": "An async pipeline approach to functional core - imperative shell.",
"license": "Unlicense",
"contributors": [
"David Cerezo Iñigo <dcerezoi@protonmail.com",
"David Cerezo Iñigo <davidcerezoinigo@gmail.com",
"Andrea Richiardi <[email protected]>",
"Sebastian Schulz"
],
Expand All @@ -21,18 +21,20 @@
],
"repository": {
"type": "git",
"url": "https://github.com/ElChache/fonda"
"url": "https://github.com/arichiardi/fonda"
},
"scripts": {
"print-version": "echo $npm_package_version",
"repl": "./scripts/repl",
"watch": "yarn shadow-cljs watch lib",
"build": "yarn shadow-cljs release lib",
"test": "yarn shadow-cljs release test && node dist/test.js",
"test:watch": "yarn shadow-cljs watch test"
"test:watch": "yarn shadow-cljs watch test",
"deploy:release": "make clean && make jar && scripts/prepare-release && scripts/deploy-jar -j ./fonda.jar",
"deploy:snapshot": "make clean && make jar && scripts/prepare-release --snapshot -s && scripts/deploy-jar -j fonda.jar"
},
"devDependencies": {
"shadow-cljs": "2.8.59"
"shadow-cljs": "2.8.15"
},
"dependencies": {}
}
16 changes: 12 additions & 4 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
(defproject elchache/fonda "0.0.3"
(defproject fonda "1.0.0-SNAPSHOT"
:url "https://github.com/arichiardi/fonda"
:description "An async pipeline approach to functional core - imperative shell."
:license {:name "Apache License"
:url "http://www.apache.org/licenses/LICENSE-2.0"}
:url "http://www.apache.org/licenses/LICENSE-2.0"}
:source-paths ["src"]
:resource-paths []
:compile-path nil
:target-path nil
:plugins [[lein-tools-deps "0.4.3"]]
:middleware [lein-tools-deps.plugin/resolve-dependencies-with-deps-edn]
:lein-tools-deps/config {:config-files [:project]}
:profiles {:dev {:test-paths ["test"]

;; unsigned SHAPSHOTs only deployed CI
;; signed releases will be manually deployed
:deploy-repositories [["clojars" {:url "https://clojars.org/repo"
:username :env/clojars_username
:password :env/clojars_password
:sign-releases false}]]

:profiles {:dev {:test-paths ["test"]
:lein-tools-deps/config {:config-files [:install :user :project]
:aliases [:dev :test]}}})
:aliases [:dev :test]}}})

0 comments on commit 1a87d13

Please sign in to comment.