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

Fela 12 #887

Merged
merged 48 commits into from
Feb 23, 2022
Merged
Changes from 1 commit
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
4a8db9c
move to turbo monorepo setup
robinweser Feb 16, 2022
c0bacb7
remove website build step
robinweser Feb 16, 2022
c443cc6
fix license, typos, names, builds
robinweser Feb 16, 2022
135d99e
fix umd build
robinweser Feb 16, 2022
00f02f4
v12.0.0-rc.0
robinweser Feb 16, 2022
bd2463f
use pnpm
robinweser Feb 17, 2022
0294ca9
fix examples
robinweser Feb 17, 2022
782241d
fix action
robinweser Feb 18, 2022
ca36942
try to fix
robinweser Feb 18, 2022
919a7d9
another try
robinweser Feb 18, 2022
bb9f50d
newer node version
robinweser Feb 18, 2022
cc52b4c
newer version
robinweser Feb 18, 2022
42d2c07
without cache
robinweser Feb 18, 2022
b3ea9aa
fix lint
robinweser Feb 18, 2022
28dc1a1
cache pnpm store
robinweser Feb 18, 2022
99c0dcc
fix workflow
robinweser Feb 18, 2022
da5cb8e
improve selector rehydration closes #885
robinweser Feb 18, 2022
c5a98c6
fix builds
robinweser Feb 18, 2022
20e073d
v12.0.0-rc.1
robinweser Feb 18, 2022
06f2225
remove cache step again
robinweser Feb 18, 2022
0d8f31a
fix action
robinweser Feb 18, 2022
dacf399
update readme
robinweser Feb 18, 2022
6793715
try fix
robinweser Feb 20, 2022
790793f
fix order
robinweser Feb 20, 2022
1287a32
keep 11.7.0 docs
robinweser Feb 20, 2022
34ad67c
fix toc
robinweser Feb 20, 2022
bcc704e
only run action once per PR / master push
robinweser Feb 20, 2022
cfa363d
update benchmark
robinweser Feb 20, 2022
7920e75
more perf improvements
robinweser Feb 20, 2022
80f5ebf
more perf things
robinweser Feb 20, 2022
de24ca9
perf things
robinweser Feb 20, 2022
520c3e4
use plugins
robinweser Feb 20, 2022
7313993
fix tests
robinweser Feb 20, 2022
70b88fc
fix builds
robinweser Feb 20, 2022
151ba2e
cleanup
robinweser Feb 21, 2022
5477bdc
simply rendering with 1 flat cache
robinweser Feb 21, 2022
6abf475
fix stuff
robinweser Feb 21, 2022
0e5e638
v12.0.0-rc.2
robinweser Feb 21, 2022
1f33d1a
add benchmarks to website
robinweser Feb 21, 2022
bd5cfec
use stylis only
robinweser Feb 22, 2022
343775f
push benchmarks
robinweser Feb 22, 2022
1018930
Merge branch 'master' into fela-12
robinweser Feb 22, 2022
fda3640
update readme and cleanup naming pattern
robinweser Feb 22, 2022
067ec25
Merge branch 'fela-12' of https://github.com/robinweser/fela into fel…
robinweser Feb 22, 2022
2025432
fix plugins
robinweser Feb 22, 2022
20f4cd8
reduce nav item size
robinweser Feb 22, 2022
2680454
v12.0.0-y.0
robinweser Feb 22, 2022
71e8876
v12.0.0-rc.3.0
robinweser Feb 22, 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
Prev Previous commit
Next Next commit
only run action once per PR / master push
  • Loading branch information
robinweser committed Feb 20, 2022
commit bcc704e81b8fcf2ade66b70b0afce850824efef3
14 changes: 13 additions & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
on: [push, pull_request]
name: Test & Lint

on:
push:
branches:
- 'master'
paths:
- 'packages/**'
pull_request:
branches:
- 'master'
paths:
- 'packages/**'

jobs:
test:
name: Ubuntu on Node ${{ matrix.node }}
Expand Down