Skip to content

@inox-tools/inline-mod@1.1.0-smart-factory.6

Pre-release
Pre-release
Compare
Choose a tag to compare
@Fryuni Fryuni released this 08 Feb 15:59
· 286 commits to main since this release
d64802a

@inox-tools/inline-mod

1.1.0-smart-factory.4

Patch Changes

  • bd29c64: Allow updating module resulution in DEV environment

1.1.0-smart-factory.3

Minor Changes

  • d430acc: Add support for serializing URL objects

Patch Changes

  • 645a2e4: Handle import errors on cache build
  • 2e7a6af: Fix dependency import path search

1.1.0-smart-factory.0

Minor Changes

  • 8aca13a: Implement support for async magic factory
  • db4e594: Add new factory utility

1.0.1

Patch Changes

  • 3bf3825: Add support for referring to named exports instead of serializing them recursivelly

1.0.0

Major Changes

  • 76c0978: Complete first release with stable API

0.1.5

Patch Changes

  • b4b4ab1: Optimizes serialization of non-capturing functions.

    Previously, non-capturing functions would be serialized to this:

    function __f0() {
      return function () {
        return () => 'read value';
      }
        .apply(undefined, undefined)
        .apply(this, arguments);
    }

    Now it is serialized to this:

    const __f0 = () => 'read value';
  • 1b3919f: Fix support for circular values

0.1.4

Patch Changes

  • 71fcbe5: Fix support for sparse arrays
  • 2230d1d: Add general support for serializing symbols
  • 9fc3942: Fix support for custom object property descriptors

0.1.3

Patch Changes

  • ecdd836: Fix license on published package

0.1.2

Patch Changes

0.1.1

Patch Changes

0.1.0

Minor Changes

Patch Changes

  • 3d16a70: Fix dynamic import warning

0.0.1

Patch Changes