UNPKG

498 BJavaScriptView Raw
1'use strict';
2let Extending = {
3 core: 'CORE',
4 another: 'ANOTHER',
5 nothing: 'NOTHING'
6}
7
8let BeginWith = {
9 brandnew: 'brandnew',
10 repo: 'existingrepo'
11};
12
13let DoUpgrade = {
14 auto: 'auto',
15 confirm: 'confirm',
16 cancel: 'cancel'
17};
18
19module.exports = {
20 DoUpgrade: DoUpgrade,
21 Extending: Extending,
22 BeginWith: BeginWith,
23 CORE_THEME_URL: 'https://github.com/mozu/core-theme.git',
24 BASETHEME: 'basetheme',
25 SUBGEN_PREFIX: require('./package.json').name .replace(/^generator\-/,'')
26};