Skip to content

Commit

Permalink
Version Packages (#756)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
seek-oss-ci and github-actions[bot] committed Mar 30, 2023
1 parent 40022c8 commit 3b624d2
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 25 deletions.
24 changes: 0 additions & 24 deletions .changeset/many-toys-search.md

This file was deleted.

25 changes: 25 additions & 0 deletions packages/sku/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# sku

## 11.8.0

### Minor Changes

- Add `libraryFile` configuration option ([#755](https://github.com/seek-oss/sku/pull/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**:

```typescript
// 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;
```

## 11.7.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sku/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sku",
"version": "11.7.2",
"version": "11.8.0",
"description": "Front-end development toolkit, powered by Webpack, Babel, CSS Modules, Less and Jest",
"main": "index.js",
"bin": {
Expand Down

0 comments on commit 3b624d2

Please sign in to comment.