Skip to content

Commit

Permalink
Version Packages (#862)
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 Jul 25, 2023
1 parent 97464d7 commit 2f69bb0
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 18 deletions.
17 changes: 0 additions & 17 deletions .changeset/css-loader.md

This file was deleted.

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

## 12.3.0

### Minor Changes

- Allow importing external CSS from `node_modules`. ([#861](https://github.com/seek-oss/sku/pull/861))

CSS from third-party dependencies can be loaded using a side-effect import, e.g.

```tsx
import { SomeComponent } from 'some-package';

import 'some-package/dist/styles.css';

export const MyComponent = () => {
return <SomeComponent>{/* ... */}</SomeComponent>;
};
```

## 12.2.0

### Minor 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": "12.2.0",
"version": "12.3.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 2f69bb0

Please sign in to comment.