Skip to content

Commit

Permalink
Version Packages (#538)
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 Oct 12, 2020
1 parent 917ad13 commit f177075
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 32 deletions.
31 changes: 0 additions & 31 deletions .changeset/thin-geckos-cross.md

This file was deleted.

32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# sku

## 10.6.0

### Minor Changes

- Support site specific routes ([#537](https://github.com/seek-oss/sku/pull/537))

Configured sites can now contain routes which are specific that site. This is useful for cross-brand applications that have different URLs.

```js
// sku.config.js
module.exports = {
sites: [
{
name: 'alpha',
host: 'dev.alpha.com.au',
routes: [
{ route: '/', name: 'home' },
{ route: '/details', name: 'details' },
],
},
{
name: 'beta',
host: 'dev.beta.com.au',
routes: [
{ route: '/home', name: 'home' },
{ route: '/my-details', name: 'details' },
],
},
],
};
```

## 10.5.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sku",
"version": "10.5.4",
"version": "10.6.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 f177075

Please sign in to comment.