Home Manual Reference Source Test Repository

lib/constants.js

const Constants = {
  ConfigFilename: 'reptar.config.js',

  /**
   * Key used on the config.path object to dictate where to find the site source
   * path.
   * @type {string}
   */
  SourceKey: 'source',

  /**
   * Key used on the config.path object to dictate where to find the site
   * destination path.
   * @type {string}
   */
  DestinationKey: 'destination',
};

export default Constants;