Skip to content

sku@11.8.0

Compare
Choose a tag to compare
@seek-oss-ci seek-oss-ci released this 30 Mar 22:17
· 192 commits to master since this release
3b624d2

Minor Changes

  • Add libraryFile configuration option (#755)

    This option allows the file name of the library to be specified in the sku configuration.
    If this option is not specified then the libraryName option will be used for this purpose instead (note that this is the previously existing behaviour).

    EXAMPLE USAGE:

    // sku.config.ts
    import type { SkuConfig } from 'sku';
    
    const skuConfig: SkuConfig = {
      libraryEntry: 'src/library.js',
      renderEntry: 'src/render.js',
      libraryName: 'MyAwesomeLibrary',
      libraryFile: 'my-awesome-library',
    };
    
    export default skuConfig;