/**
  * @return string
  */
 public function compile()
 {
     $this->stopwatch->start('webpack.total');
     $this->stopwatch->start('webpack.prepare');
     // Recompile twig templates where its needed.
     $this->addSplitPoints();
     $this->addResolveConfig();
     // Write the webpack configuration file.
     file_put_contents($this->cache_dir . DIRECTORY_SEPARATOR . 'webpack.config.js', $this->generator->getConfiguration());
     $this->profiler->set('compiler.performance.prepare', $this->stopwatch->stop('webpack.prepare')->getDuration());
     $this->stopwatch->start('webpack.compiler');
     $this->process->run();
     $output = $this->process->getOutput() . $this->process->getErrorOutput();
     $this->profiler->set('compiler.executed', true);
     $this->profiler->set('compiler.successful', strpos($output, 'Error:') === false);
     $this->profiler->set('compiler.last_output', $output);
     if ($this->profiler->get('compiler.successful')) {
         $this->tracker->rebuild();
     }
     // Finally, write some logging for later use.
     file_put_contents($this->cache_dir . DIRECTORY_SEPARATOR . 'webpack.compiler.log', $output);
     $this->profiler->set('compiler.performance.compiler', $this->stopwatch->stop('webpack.compiler')->getDuration());
     $this->profiler->set('compiler.performance.total', $this->stopwatch->stop('webpack.total')->getDuration());
     return $output;
 }
 public function testProfiler()
 {
     $profiler = new Profiler();
     $profiler->set('foobar', 'hoi');
     $profiler->collect($this->getMock(Request::class), $this->getMock(Response::class));
     $this->assertEquals('hoi', $profiler->get('foobar'));
     $this->assertEquals('webpack', $profiler->getName());
 }
 public function testProfiler()
 {
     $profiler = new Profiler();
     $collector = new WebpackDataCollector($profiler);
     $profiler->set('foobar', 'hoi');
     $collector->collect($this->getMockBuilder(Request::class)->getMock(), $this->getMockBuilder(Response::class)->getMock());
     $this->assertEquals('hoi', $collector->get('foobar'));
     $this->assertEquals('webpack', $collector->getName());
 }
Exemple #4
0
 private function boot()
 {
     if ($this->booted) {
         return;
     }
     $this->booted = true;
     foreach ($this->finder->findAllTemplates() as $reference) {
         $this->addTemplate($reference);
     }
     foreach (array_keys($this->bundle_paths) as $name) {
         if (false !== ($resolved_path = $this->resolveResourcePath('@' . $name))) {
             $this->aliases['@' . $name] = $resolved_path;
             $this->addPath($resolved_path);
         }
     }
     $this->profiler->set('bundles', $this->aliases);
     $this->profiler->set('templates', $this->templates);
 }