@@ -7,6 +7,14 @@ const desktopPath = join(rootPath, "desktop");
77const mainPath = join ( desktopPath , "main-app" ) ;
88const rendererPath = join ( desktopPath , "renderer-app" ) ;
99
10+ const typesPath = join ( packagesPath , "flat-types" ) ;
11+ const i18nPath = join ( packagesPath , "flat-i18n" ) ;
12+ const componentsPath = join ( packagesPath , "flat-components" ) ;
13+
14+ const typesEntryPath = join ( packagesPath , "flat-types" , "src" ) ;
15+ const i18nEntryPath = join ( packagesPath , "flat-i18n" , "locales" ) ;
16+ const componentsEntryPath = join ( packagesPath , "flat-components" , "src" ) ;
17+
1018const rootPackageJSONPath = join ( rootPath , "package.json" ) ;
1119const mainPackageJSONPath = join ( mainPath , "package.json" ) ;
1220
@@ -19,8 +27,15 @@ module.exports.desktopPath = desktopPath;
1927module . exports . mainPath = mainPath ;
2028module . exports . rendererPath = rendererPath ;
2129
30+ module . exports . typesPath = typesPath ;
31+ module . exports . i18nPath = i18nPath ;
32+ module . exports . componentsPath = componentsPath ;
33+
34+ module . exports . typesEntryPath = typesEntryPath ;
35+ module . exports . i18nEntryPath = i18nEntryPath ;
36+ module . exports . componentsEntryPath = componentsEntryPath ;
37+
2238module . exports . rootPackageJSONPath = rootPackageJSONPath ;
2339module . exports . mainPackageJSONPath = mainPackageJSONPath ;
2440
2541module . exports . version = version ;
26-
0 commit comments