X Tutup
The Wayback Machine - https://web.archive.org/web/20220506164412/https://github.com/developit/microbundle/commits/master
Skip to content
Permalink
master
Switch branches/tags

Commits on May 4, 2022

  1. chore: Bump Node target version to v12 (#954)

    * chore: Bumps Node target to v12
    
    * docs: Adding changeset
    rschristian committed May 4, 2022
  2. chore: Silence warnings when using 'node:' protocol (#956)

    * chore: Silence warnings when using builtins w/ 'node:' protocol
    
    * docs: Adding changeset
    rschristian committed May 4, 2022
  3. Fix typo in readme (#957)

    DaviDevMod committed May 4, 2022

Commits on Apr 26, 2022

  1. Version Packages (#927)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    preact-bot and github-actions[bot] committed Apr 26, 2022

Commits on Apr 25, 2022

  1. refactor: Output ESM files w/ .mjs when appropriate (#950)

    * fix: Output ESM w/ .mjs ext when pkg type is cjs
    
    * docs: Adding changeset
    
    * Update README.md
    
    * Update README.md
    
    Co-authored-by: Jason Miller <developit@users.noreply.github.com>
    
    * chore: Add warning for new ESM output extension behavior
    
    * Update src/index.js
    
    Co-authored-by: Jason Miller <developit@users.noreply.github.com>
    
    Co-authored-by: Jason Miller <developit@users.noreply.github.com>
    rschristian and developit committed Apr 25, 2022
  2. feature: bundle visualizer (#949)

    * feat: Add --visualizer flag to generate build output stats
    
    Co-authored-by: Alex Hayton <alex.hayton@gmail.com>
    
    * docs: Adding changeset
    
    * chore: Removing & git ignoring stats.html
    
    Co-authored-by: Alex Hayton <alex.hayton@gmail.com>
    rschristian and AlexHayton committed Apr 25, 2022

Commits on Apr 21, 2022

  1. fix: babel exclude for hoisted modules (#947)

    * fix: Ensures hoisted node_modules are excluded by babel
    
    * docs: Adding changeset
    rschristian committed Apr 21, 2022
  2. fix: build message formatting (#948)

    * fix: Build output message formatting w/ dynamic import module
    
    * docs: Adding changeset
    rschristian committed Apr 21, 2022

Commits on Apr 20, 2022

  1. fix: tsconfig cwd differing from microbundle's cwd (#941)

    * fix: 'tsconfig.json' search should start in the set cwd
    
    * docs: Adding changeset
    rschristian committed Apr 20, 2022
  2. docs: compress flag (#940)

    * docs: Add info on --compress default value
    
    * docs: Update CLI help menu --compress info
    
    * docs: Adding changeset
    rschristian committed Apr 20, 2022

Commits on Apr 7, 2022

  1. feat: [auto-commit] fix: _sizeInfo npe (#935)

    * feat: [auto-commit] fix: _sizeInfo npe
    
    * docs: Adding changeset
    
    Co-authored-by: Ryan Christian <ryanchristian4427@gmail.com>
    mycoin and rschristian committed Apr 7, 2022

Commits on Jan 20, 2022

  1. Fix mangle.json being overwritten with [object Object] (#926)

    * Fix mangle.json being overwritten with [object Object]
    
    Regression from #882.
    
    * Create gorgeous-singers-invite.md
    developit committed Jan 20, 2022

Commits on Nov 18, 2021

  1. Version Packages (#911)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    preact-bot and github-actions[bot] committed Nov 18, 2021

Commits on Oct 21, 2021

Commits on Oct 14, 2021

  1. Version Packages (#900)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    preact-bot and github-actions[bot] committed Oct 14, 2021
  2. feat: Closes #497: preserve trailing newline in mangle.json (#882)

    Co-authored-by: Leah <github.leah@hrmny.sh>
    MiKr13 and ForsakenHarmony committed Oct 14, 2021

Commits on Oct 11, 2021

Commits on Oct 6, 2021

  1. Version Packages (#859)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    preact-bot and github-actions[bot] committed Oct 6, 2021
  2. Resolve using "node" export condition for --target node (#887)

    * Resolve using "node" export condition for --target node
    
    When bundling for a Node.js target, Microbundle should follow the "node" conditional package export key to match Node's own resolution. Fixes #886.
    
    * lint
    
    * Create fuzzy-trains-switch.md
    
    * Update index.js
    developit committed Oct 6, 2021
  3. feat: Expands generateTypes flag to support TS entries (#865)

    * feat: Expands generateTypes flag to support TS entries
    
    * fix: Returning previous .d.ts generation
    
    * test: Modifying `--generateTypes false` test for use on TS projects
    
    * docs: Adding changeset
    rschristian committed Oct 6, 2021
  4. Fix exports walk (#852) (#853)

    * Fix exports walk (#852)
    
    Fixes #852
    
    * Create eight-toes-pump.md
    
    * traverse default exports in type:module packages
    developit committed Oct 6, 2021
  5. Fix: preserve terser annotations regexp (#875)

    * fix: preserve terser annotations regexp
    
    * chore: add changeset
    
    * test: update snapshots
    dwightjack committed Oct 6, 2021
  6. Rebase: Add worker-loader (#867)

    * Add worker-loader
    
    Targets enhancement: #170
    Enable usage of `microbundle --worker-loader` to apply rollup-plugin-web-worker-loader.
    
    Allow bundling web workers automatically
    
    - Add flag `--worker-loader`
    - For format `es` and `modern`, a Worker `type: module` is automatically
    bundled
    
    * Update README.md
    
    Co-authored-by: Jason Miller <developit@users.noreply.github.com>
    
    * Update src/index.js
    
    Co-authored-by: Jason Miller <developit@users.noreply.github.com>
    
    * Update src/prog.js
    
    Co-authored-by: Jason Miller <developit@users.noreply.github.com>
    
    * Update test/__snapshots__/index.test.js.snap
    
    Co-authored-by: Jason Miller <developit@users.noreply.github.com>
    
    * Update test/fixtures/worker-loader/package.json
    
    Co-authored-by: Jason Miller <developit@users.noreply.github.com>
    
    * Update README.md
    
    Co-authored-by: Jason Miller <developit@users.noreply.github.com>
    
    * Remove node_modules from snapshot
    
    * Upgrade rollup-plugin-off-main-thread
    
    * Add changeset
    
    Co-authored-by: Tim Daubenschütz <tim@daubenschuetz.de>
    Co-authored-by: Jason Miller <developit@users.noreply.github.com>
    3 people committed Oct 6, 2021

Commits on Jun 28, 2021

  1. Fix: Support booleans in minify options (#858)

    * Add fixture
    
    * Prevent boolean minify options from being replaced
    
    * Update snapshots
    
    * Add changeset
    marcbouchenoire committed Jun 28, 2021

Commits on Jun 16, 2021

  1. Fix typo (#856)

    abdusco committed Jun 16, 2021

Commits on Jun 11, 2021

  1. Version Packages (#851)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    preact-bot and github-actions[bot] committed Jun 11, 2021
  2. Bugfix: preserve Terser annotations during Babel pass (#848)

    * Bugfix: preserve Terser annotations during Babel pass
    
    We were stripping out everything except `__PURE__`, but Terser has a number of annotations using that format - these were previously being ignored.
    
    * Create late-bags-argue.md
    
    * Add test for Terser annotations
    developit committed Jun 11, 2021

Commits on Jun 7, 2021

  1. Version Packages (#846)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    preact-bot and github-actions[bot] committed Jun 7, 2021
Older
X Tutup