Skip to content

Commit

Permalink
Version Packages (#728)
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 Dec 12, 2022
1 parent 1cb669f commit 993ac08
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 22 deletions.
21 changes: 0 additions & 21 deletions .changeset/afraid-fishes-swim.md

This file was deleted.

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

## 11.7.0

### Minor Changes

- Add `package.json` configuration flags that enable you to skip sku configuration and peer dep validation ([#727](https://github.com/seek-oss/sku/pull/727))

**NOTE**: These settings disable critical functionality of sku, so you likely
don't want to use them unless you know what you're doing

- `skuSkipConfigure`: Skip generation of config files. E.g. .prettierrc, tsconfig.json, etc.
- `skuSkipValidatePeerDeps`: Skip checking for multiple copies of the same package. You likely want to try and fix the warnings found by this check rather than disabling it.

**EXAMPLE USAGE**:

```jsonc
// package.json
{
"skuSkipConfigure": true,
"skuSkipValidatePeerDeps": true
}
```

## 11.6.2

### 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": "11.6.2",
"version": "11.7.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 993ac08

Please sign in to comment.