-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixup! WIP - Add previous result in step functions, mocked functions
- Loading branch information
1 parent
d0c6e41
commit 1a87d13
Showing
2 changed files
with
20 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
], | ||
|
@@ -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": {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]}}}) |