@gravity-ui/app-builder 0.42.0-beta.2 → 0.42.0-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -25,8 +25,10 @@ function watch(ts, projectPath, { logger, onAfterFilesEmitted, enableSourceMap,
25
25
  }
26
26
  });
27
27
  (0, utils_1.onHostEvent)(host, 'afterProgramEmitAndDiagnostics', (program) => {
28
- const project = program.getCompilerOptions().project;
29
- logger.verbose(`Emit completed for ${project}!`);
28
+ const project = program.getCompilerOptions().configFilePath;
29
+ logger.verbose(typeof project === 'string'
30
+ ? `Emit completed for ${project.replace(process.cwd(), '')}!`
31
+ : 'Emit completed!');
30
32
  });
31
33
  // `createSolutionBuilderWithWatch` creates an initial program, watches files, and updates
32
34
  // the program over time.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravity-ui/app-builder",
3
- "version": "0.42.0-beta.2",
3
+ "version": "0.42.0-beta.3",
4
4
  "description": "Develop and build your React client-server projects, powered by typescript and webpack",
5
5
  "license": "MIT",
6
6
  "type": "commonjs",