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

v1.0.0-beta1

Pre-release
Pre-release
Compare
Choose a tag to compare
@andreasrs andreasrs released this 18 Jan 13:36
· 15 commits to master since this release
  • Now depends on roc. roc-config is deprecated
  • New configuration format within applications
  • Updated configuration descriptions
  • Provides its own commands for use with cli: build, start, dev, list-settings, markdown-settings
  • Provides createBuilder plugin for extending internal builder
  • Fixes bugs relating to roc paths (trailing slashes)

You will need to make the following changes in your app configuration in the transition from alpha to beta:

Before:

module.exports = {
     config: {
         applicationName: 'My Roc Application'
     }
 };

After:

module.exports = {
    settings: {
        runtime: {
            applicationName: 'My Roc Application'
        }
    }
};

Note that config is renamed to settings and that the root values of config now are wrapped with runtime.