-
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
2555004
commit 8d71131
Showing
3 changed files
with
29 additions
and
19 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]}}}) |
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 |
---|---|---|
|
@@ -509,20 +509,20 @@ sha.js@^2.4.0, sha.js@^2.4.8: | |
inherits "^2.0.1" | ||
safe-buffer "^5.0.1" | ||
|
||
[email protected].1: | ||
version "1.3.1" | ||
resolved "https://registry.yarnpkg.com/shadow-cljs-jar/-/shadow-cljs-jar-1.3.1.tgz#a5f8ab7664b40e11345837e4c6bce8e0ac9b2cc3" | ||
integrity sha512-IJSm4Gfu/wWDsOQ0wNrSxuaGdjzsd78us+3bop3cpWsoO2Igdu6VIBItYrZHRRBKl5LIZKXfnSh/2eWG3C1EFw== | ||
[email protected].0: | ||
version "1.3.0" | ||
resolved "https://registry.yarnpkg.com/shadow-cljs-jar/-/shadow-cljs-jar-1.3.0.tgz#e25c4fa57c0b405096250884b164c112654a06a3" | ||
integrity sha512-KReNVgFVM2ZPPGCP8rsCPqtlee/+SwXyoeEqbAXBO7jlpoNnNee2x4fiRg/Pr/vXGEkV/Ez5l4qdNSU1Na+1Jg== | ||
|
||
[email protected].59: | ||
version "2.8.59" | ||
resolved "https://registry.yarnpkg.com/shadow-cljs/-/shadow-cljs-2.8.59.tgz#41de7c44bdf8e835f3c7dc19e415732e6cada844" | ||
integrity sha512-b419+WQxTB7Nnr6n5Bqh1G7mC3+jfye5ZJAK000HBThbYjVFw1nskzS3vOMs3neHRcX8fwBKgM5k652pNHD+6g== | ||
[email protected].15: | ||
version "2.8.15" | ||
resolved "https://registry.yarnpkg.com/shadow-cljs/-/shadow-cljs-2.8.15.tgz#304cbafe5f196a9e6ff792d11872f15e380ac0ea" | ||
integrity sha512-L51AgzxgwRVGT85d7XXIAtoIQ9yrW0XYvrR8iyf4o/A5BPR9ocxudnxIuIz4syE5VcbSdWvYnv00EYh0vs2AJg== | ||
dependencies: | ||
mkdirp "^0.5.1" | ||
node-libs-browser "^2.0.0" | ||
readline-sync "^1.4.7" | ||
shadow-cljs-jar "1.3.1" | ||
shadow-cljs-jar "1.3.0" | ||
source-map-support "^0.4.15" | ||
which "^1.3.1" | ||
ws "^3.0.0" | ||
|