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

feat(esbuild): add output_css flag to esbuild() #2545

Merged
merged 6 commits into from
Apr 8, 2021

Commits on Apr 8, 2021

  1. feat(esbuild): add output_css flag to esbuild()

    When esbuild encounters an 'import "./foo.css"' file in normal (non-splitting)
    mode, it will place the contents of that file in a .css file next to the
    main output .js file.
    
    This patch adds a flag output_css, which when set to True, will declare
    the created .css file as another output, so it can be consumed by other
    rules.
    dae committed Apr 8, 2021
    Configuration menu
    Copy the full SHA
    c860d95 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ea50183 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3031e0d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5130787 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d1f07dd View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    060b781 View commit details
    Browse the repository at this point in the history