Skip to content

v11.7.0

Compare
Choose a tag to compare
@seek-oss-ci seek-oss-ci released this 13 Dec 00:00
· 221 commits to master since this release
993ac08

Minor Changes

  • Add package.json configuration flags that enable you to skip sku configuration and peer dep validation (#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:

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