diff --git a/config/index.js b/config/index.js index 5797df8..bc89475 100644 --- a/config/index.js +++ b/config/index.js @@ -35,6 +35,7 @@ const config = { DIR_GLOBAL_STYLES: 'common/styles/global', DIR_STATIC: 'static', DIR_DIST: 'dist', + DIR_READY_TO_DEPLOY: 'readyToDeploy', DIR_BUILD: 'build', DIR_SERVER: 'server', DIR_TEST: '__tests__', @@ -49,9 +50,11 @@ const paths = (dir = 'base') => { const _paths = { base: base(), entryApp: base(config.DIR_SRC, config.DIR_CLIENT, config.ENTRY_APP), + entryServer: base(config.DIR_SRC, config.DIR_SERVER, config.ENTRY_APP), src: base(config.DIR_SRC), globalStyles: base(config.DIR_SRC, config.DIR_GLOBAL_STYLES), - dist: base(config.DIR_STATIC, config.DIR_DIST), + dist: base(config.DIR_READY_TO_DEPLOY, config.DIR_STATIC, config.DIR_DIST), + distServer: base(config.DIR_READY_TO_DEPLOY), build: base(config.DIR_BUILD), server: base(config.DIR_SERVER), test: base(config.DIR_TEST),