-
Notifications
You must be signed in to change notification settings - Fork 309
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
A CLI to compile an entire folder with StyleX #491
Conversation
…stable_moduleResolution
fix package-lock [cli] add test for basic cli command functionality [cli] add cli commands to README [cli] updated package-lock Update packages/cli/package.json Use the `lib` folder, not the `src` folder for the output of the package. Update packages/cli/package.json test npm build error fix x Forcing an empty commit.
compressed-size: runtime library Size change: 0.00 kB View unchanged
|
compressed-size: e2e bundles Size change: 0.00 kB View unchanged
|
So @Jta26 Just the external package compilation remaining? |
Yep, working on it now and should have it soon. |
Okay, so what I made now kinda works. There's a bug somewhere (probably in my code) that makes the hashes for styles that are from external styles like this from open-props import {colors} from '@stylexjs/open-props/colors.stylex';
const styles = stylex.create({
h2Color: {
color: colors.green
}
});
...
<h2 {...stylex.props(styles.h2Green)}></h2> Will be transformed into <h2 class="x3ifasef ..." > and the css will look like .x3ifasef:not(#\#):not(#\#):not(#\#){color:var(--x1masbj0)}
Something is not connected between them and I cannot figure out why. |
Okay so I figured it out and got it working Babel is doing DFS, and the plugin I made was selecting on it's hashing I fixed the issue by also using |
I'd like |
@javascripter The CLI let's you pass all the regular config options to the Babel Plugin through a JSON5 file. |
What changed / motivation ?
StyleX needs a bundler integration to work correctly. It also depends on Babel. However, this can be burden when trying to integrate into various projects built with project starters like Next.js, Solid Start and create-react-app. These projects have a complex bundler setup and it can be hard to integrate into them correctly. In some cases, like Next, the tooling may be written in Rust where an integration of the Babel plugin is impossible.
In order to provide a clean and reliable escape hatch for these scenarios, we should have a CLI that transforms an entire folder of JS files and outputs the resulting CSS file. (Tools like Tailwind and PandaCSS similarly side-step the built-in bundler because of how hard it is to integrate)
Expected Behaviour
For this example, consider a Next.js app configured to use the
src/
folder with asrc/app/
within that contains actual routes. When using the CLI, you'd be able to make another folder called, say,source/
and gitignoresrc/
folder. Thesource/
folder would contain all the same files that would normally be defined within thesrc/
folder, but you'd be able to use StyleX.The CLI will then:
source/
folder with the StyleX Babel plugin and output it at the same relative path in thesrc/
folder.src/stylex-bundle.css
.stylex-bundle.css
file. (Configurable)With this process, the StyleX CLI would run first and generate an
src/
folder with your actual source code. After this, the usualnext dev
script will be able to take over and run as usual.Additionally, the CLI should also:
watch
mode so that only the files that are edited are recompiled, and the generated CSS file is updated accordingly.node_modules
packages and write the compiled files in some locations.Finally, there are a few requirements for the configuration (This is probably a lot of the work):
.babelrc
file at the project root. (Next goes into Babel mode if it detect a.babelrc
file)Stretch Goals
Possible tools that can be used:
fb-watchman
is a node client forwatchman
. A tool that tracks file changes within a folderchokidar
node-watch
Recreated from #412