Skip to content

1.0.0

Compare
Choose a tag to compare
@ValentinGot ValentinGot released this 06 Aug 10:07
· 14 commits to master since this release

BREAKING CHANGES

  • raw-loader: as of raw-loader 2.0.0, you should add the .default when requiring a template [@ValentinGot]

    export const AppComponent = {
      controller: AppController,
      template: require('./app.component.html').default
    };
  • @clea/cli: bump to Webpack 4 [@ValentinGot]

  • @clea/cli: minimum required nodejs version is now 8.9.0 [@ValentinGot]

Feat

  • performance: add a new performance entry configuration in the .clea-cli.json file [@ValentinGot]

    {
      "performance": {
        "hints": "warning",
        "maxEntrypointSize": 2000000,
        "maxAssetSize": 2000000
      }
    }

Fixed

  • package.json: as of now, postcss requires autoprefixer to be set as a dependency [@ValentinGot]

Updated

  • generate: generated components are now in the __name__.compnent.ts file. The controller file has been removed for more clarity. [@ValentinGot]
  • @clea/cli: bump TypeScript version to 3.5 [@ValentinGot]
  • @clea/cli: bump Angular version to 1.7 [@ValentinGot]