Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more examples to playground #67

Merged
merged 23 commits into from
Jan 20, 2022
Merged
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
9057a45
Add more examples to load in playground (#25)
katauber Dec 2, 2021
0886154
Fix instruction which directory to use in Github Actions (#25)
katauber Dec 7, 2021
926e11c
Update metafacture-core dependencies to 5.3.1
fsteeg Dec 8, 2021
e02657e
Update to setup-node, shadow-clj and lein-shadow plugin
katauber Dec 7, 2021
53f9146
Add package-lock.json
katauber Dec 8, 2021
9349500
Add package-lock.json
katauber Dec 8, 2021
e92fa7d
Merge branch 'metafacture-core-5.3.1' of https://github.com/metafactu…
fsteeg Dec 9, 2021
ffb38eb
Add more examples to load in playground (#25)
katauber Dec 2, 2021
3e73077
Fix instruction which directory to use in Github Actions (#25)
katauber Dec 7, 2021
972cf65
Update to setup-node, shadow-clj and lein-shadow plugin
katauber Dec 7, 2021
169f81e
Update example workflows (#25)
TobiasNx Dec 14, 2021
119b682
Merge branch '25-examples' of https://github.com/metafacture/metafact…
katauber Dec 15, 2021
d7527d0
Remove empty parameters in examples (#25)
katauber Dec 16, 2021
43c8413
Clean result after loading example (#25)
katauber Dec 16, 2021
1437a6a
Fix handling of active-editor value (#25)
katauber Dec 16, 2021
6fe15d7
Delete old examples (#25)
TobiasNx Dec 16, 2021
f2de937
Fix tests because of changed file names (#25)
katauber Dec 17, 2021
b819963
Improve regex to detect if fix, morph and data is used in flux (#25)
katauber Dec 17, 2021
6a8cf2a
Switch order of share links
katauber Dec 14, 2021
34be0f5
Add button to download workflow as files (#59)
katauber Dec 14, 2021
760347d
Merge pull request #69 from metafacture/59-exportWorkflow
katauber Dec 17, 2021
38c1eeb
Move some examples, skip subdirectories in examples/ (#25)
fsteeg Jan 11, 2022
5a40c6f
Add visibility of active dropdown item (#25)
katauber Jan 18, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ jobs:
repository: metafacture/metafacture-fix
ref: master
- name: Install metafacture-fix
run: |
cd metafacture-fix
./gradlew install
working-directory: metafacture-fix
run: ./gradlew install
- name: Set up Node.js
uses: actions/setup-node@v2
- uses: actions/checkout@v2
- name: Install dependencies
run: lein deps
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,10 @@ jobs:
repository: metafacture/metafacture-fix
ref: master
- name: Install metafacture-fix
run: |
cd metafacture-fix
./gradlew install
working-directory: metafacture-fix
run: ./gradlew install
- name: Set up Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v2
- name: Install karma and headless chrome
run: |
npm install -g karma-cli
Expand Down
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@
/shadow-cljs.edn
/.shadow-cljs/

# npm
/package-lock.json

# IDE
.clj-kondo/
.lsp/
Loading