'^6.23.0', 'react' => '^15.4.2', 'react-dom' => '^15.4.2', ] + Arr::except($packages, ['vue']); } /** * Update the Webpack configuration. * * @return void */ protected static function updateWebpackConfiguration() { copy(__DIR__.'/react-stubs/webpack.mix.js', base_path('webpack.mix.js')); } /** * Update the example component. * * @return void */ protected static function updateComponent() { (new Filesystem)->delete( resource_path('assets/js/components/ExampleComponent.vue') ); copy( __DIR__.'/react-stubs/Example.js', resource_path('assets/js/components/Example.js') ); } /** * Update the bootstrapping files. * * @return void */ protected static function updateBootstrapping() { copy(__DIR__.'/react-stubs/app.js', resource_path('assets/js/app.js')); } }