sku@11.8.0
·
705 commits
to master
since this release
Minor Changes
-
Add
libraryFileconfiguration 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 thelibraryNameoption 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;