Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jsx
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
jsx
Merge requests
!3
Add linaria as a CSS library
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Add linaria as a CSS library
issue/jsx-3393003:linaria-css
into
1.0.x
Overview
28
Commits
11
Pipelines
2
Changes
25
Merged
Add linaria as a CSS library
Harumi Jang
requested to merge
issue/jsx-3393003:linaria-css
into
1.0.x
Oct 24, 2023
Overview
20
Commits
11
Pipelines
2
Changes
25
This PR:
Adds linaria as a css library
Adds new NodeCardCommon jsx component that replaces node--card-common and node--card-common-alt twig templates
Removes npm-watch library and replaces with esbuild's watch feature in watch-react.mjs
Replaces React watch and build command with esbuild scripts.
Edited
Oct 24, 2023
by
Harumi Jang
0
0
Merge request reports
Compare
1.0.x
version 5
f94dcf06
Oct 25, 2023
version 4
41c6cf07
Oct 25, 2023
version 3
a977bcc9
Oct 24, 2023
version 2
f560d4f2
Oct 24, 2023
version 1
9be2abd4
Oct 24, 2023
1.0.x (base)
and
latest version
latest version
f94dcf06
11 commits,
Oct 25, 2023
version 5
f94dcf06
11 commits,
Oct 25, 2023
version 4
41c6cf07
10 commits,
Oct 25, 2023
version 3
a977bcc9
7 commits,
Oct 24, 2023
version 2
f560d4f2
6 commits,
Oct 24, 2023
version 1
9be2abd4
4 commits,
Oct 24, 2023
25 files
+
215
−
382
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
25
demo/themes/umami_jsx/app/scripts/build-react.mjs
0 → 100644
+
5
−
0
View file @ f94dcf06
Edit in single-file editor
Open in Web IDE
import
*
as
esbuild
from
'
esbuild
'
;
import
{
config
}
from
'
./config-react.mjs
'
;
esbuild
.
build
(
config
)
.
catch
(()
=>
process
.
exit
(
1
));
Loading