Skip to content
This repository has been archived by the owner on Sep 25, 2019. It is now read-only.

v8.0.0

Compare
Choose a tag to compare
@pirelenito pirelenito released this 13 Jan 14:12
· 309 commits to master since this release

This stable release brings all the changes from the previous release candidates.

Smaller CSS module names

It changed from [hash] to [hash:base64:5], which should decreate the size of the final bundle considerably. Check #298 for more information.

Yarn support and changes in the npm scripts

This release removes the need for cross-env while updating the standard npm scripts for:

{
  "scripts": {
    "build": "sagui build",
    "dist": "sagui dist",
    "start": "sagui develop --port 3000",
    "test": "sagui test",
    "test:lint": "sagui test:lint",
    "test:typecheck": "sagui test:typecheck",
    "test:unit": "sagui test:unit --coverage",
    "test:unit:watch": "sagui test:unit --watch"
  }  
}

If you haven't made any custom changes, upgrading from v7, should be just to point to the newest release. Sagui will take care of updating the scripts for you.

Deprecation of npm run develop

Now simply use the more standard npm start.

Other notable changes

  • Make style source-maps disabled by default #290