Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: seek-oss/css-modules-typescript-loader
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: bhollis/css-modules-typescript-loader
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 5 commits
  • 18 files changed
  • 2 contributors

Commits on Oct 24, 2023

  1. feat: Support named exports

    BREAKING CHANGE: Updates the declaration template.
    
    This is a followup on #38
    
    The `exports =` declaration was added in e7342df but removed in
    908d491 due some issue in babel which I can't reproduce. Maybe that
    has been fixed downstream in the meantime.
    
    Due to microsoft/TypeScript#40594 we cannot export these names directly
    since class names might not be valid JavaScript identifiers, even though
    they are valid exported names. When that TypeScript bug is resolved this
    can be changed to export the names directly instead of using `export =`.
    The problem with `export =` is that it will let you do `import * as css
    from ...` in addition to `import css from ...` even though only
    `import *` will work.
    laverdet committed Oct 24, 2023
    Configuration menu
    Copy the full SHA
    525cd6d View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2025

  1. refactor: Update dependencies and tests

    Update dependencies, update tests for namedExport flag, set up GitHub actions for publishing
    
    BREAKING CHANGE: Minimum NodeJS version and webpack versions have been updated.
    bhollis committed Oct 12, 2025
    Configuration menu
    Copy the full SHA
    8b6a2c6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    24cc82b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a647a81 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    134ed8f View commit details
    Browse the repository at this point in the history
Loading