2017-03-09 114 views
1

我想laravel 5,3升级到5.4,但在我更新laravel混,我去这样eorrors。 在我webpack.mix.js,我包括此文件:laravel混合不导入所有文件。升级到5.4 laravel

const { mix } = require('laravel-mix'); 

/* 
|-------------------------------------------------------------------------- 
| Mix Asset Management 
|-------------------------------------------------------------------------- 
| 
| Mix provides a clean, fluent API for defining some Webpack build steps 
| for your Laravel application. By default, we are compiling the Sass 
| file for the application as well as bundling up all the JS files. 
| 
*/ 

mix.js('resources/assets/js/app.js', 'public/js') 
    .sass('resources/assets/sass/app.scss', 'public/css'); 

mix.styles([ 
      'bootstrap.min.css', 
      'bootstrap-datetimepicker.min.css', 
      'select2-bootstrap.css', 
      'font-awesome.min.css', 
      'smartadmin-production-plugins.min.css', 
      'smartadmin-production.min.css', 
      'smartadmin-skins.min.css', 
      'menu.css', 
      'chosen.min.css', 
      'your_style.css' 

     ], 
     'public/smartadmin/css/all.css', 
     'resources/assets/smartadmin/css'); 

    /*main js*/ 
    mix.scripts([ 
      'plugin/pace/pace.min.js', 
      'libs/jquery-2.1.1.min.js', 
      'libs/jquery-ui-1.10.3.min.js', 

     ], 
     'public/smartadmin/js/jquery.js', 
     'resources/assets/smartadmin/js'); 

    mix.scripts([ 
      'app.config.js', 
      '/plugin/jquery-touch/jquery.ui.touch-punch.min.js', 
      '/bootstrap/bootstrap.min.js', 
      // '/bootstrap/moment.js', 
      '/bootstrap/bootstrap-datetimepicker.min.js', 
      '/notification/SmartNotification.min.js', 
      '/smartwidgets/jarvis.widget.min.js', 
      '/plugin/easy-pie-chart/jquery.easy-pie-chart.min.js', 
      '/plugin/sparkline/jquery.sparkline.min.js', 
      '/plugin/jquery-validate/jquery.validate.min.js', 
      '/plugin/masked-input/jquery.maskedinput.min.js', 
      '/plugin/select2/select2.min.js', 
      '/plugin/bootstrap-slider/bootstrap-slider.min.js', 
      '/plugin/bootstrap-timepicker/bootstrap-timepicker.min.js', 
      '/plugin/colorpicker/bootstrap-colorpicker.min.js', 
      '/plugin/clockpicker/clockpicker.min.js', 
      '/plugin/msie-fix/jquery.mb.browser.min.js', 
      '/plugin/fastclick/fastclick.min.js', 
      '/plugin/chosen/chosen.jquery.min.js', 
      'app.min.js', 
      '/smart-chat-ui/smart.chat.ui.min.js', 
      '/smart-chat-ui/smart.chat.manager.min.js', 
      '/nestable/jquery.nestable.js', 
      '/plugin/summernote/summernote.min.js', 
      '/smartwidgets/jarvis.widget.min.js', 
      '/plugin/easy-pie-chart/jquery.easy-pie-chart.min.js', 
      '/plugin/fastclick/fastclick.min.js', 
      'site.js' 

     ], 
     'public/smartadmin/js/all.js', 
     'resources/assets/smartadmin/js'); 
    /*charts*/ 
     mix.scripts([ 
      'plugin/flot/jquery.flot.cust.min.js', 
      'plugin/flot/jquery.flot.resize.min.js', 
      'plugin/flot/jquery.flot.time.min.js', 
      'plugin/flot/jquery.flot.tooltip.min.js', 
      'plugin/vectormap/jquery-jvectormap-1.2.2.min.js', 
      'plugin/vectormap/jquery-jvectormap-world-mill-en.js', 
      'plugin/moment/moment.min.js', 
      'plugin/fullcalendar/jquery.fullcalendar.min.js', 
      'plugin/morris/raphael.min.js', 
      'plugin/morris/morris.min.js', 

     ], 
     'public/smartadmin/js/charts.js', 
     'resources/assets/smartadmin/js'); 

    /*stream datatable*/ 

    mix.scripts([ 
      'plugin/streamtable/stream_table.js', 
      'plugin/streamtable/mustache.js', 

     ], 
     'public/smartadmin/js/streamtable.js', 
     'resources/assets/smartadmin/js'); 

    /*stream table*/ 
    mix.scripts([ 
      'plugin/bootstrap-wizard/jquery.bootstrap.wizard.min.js', 
      'plugin/fuelux/wizard/wizard.min.js', 

     ], 
     'public/smartadmin/js/wizard.js', 
     'resources/assets/smartadmin/js'); 
    /*stream table*/ 
    mix.scripts([ 
      'plugin/streamtable/table.js', 

     ], 
     'public/smartadmin/js/table.js', 
     'resources/assets/smartadmin/js'); 

后运行NPM运行开发它给:

 Asset  Size Chunks    Chunk Names 
fonts/glyphicons-halflings-regular.eot?f4769f9bdb7466be65088239c12046d1 20.1 kB [emitted] 
fonts/glyphicons-halflings-regular.svg?89889688147bd7575d6327160d64e760 109 kB [emitted] 
fonts/glyphicons-halflings-regular.ttf?e18bbf611f2a2e43afc071aa2f4e1512 45.4 kB [emitted] 
fonts/glyphicons-halflings-regular.woff?fa2772327f55d8198301fdb8bcfc8158 23.4 kB [emitted] 
fonts/glyphicons-halflings-regular.woff2?448c34a56d699c29117adc64c43affeb 18 kB [emitted] 
/js/app.js 1.17 MB 0 [emitted] [big] /js/app 
/css/app.css 683 kB 0 [emitted] [big] /js/app 
mix-manifest.json 66 bytes [emitted] 

以前我用酏剂... 在我的包.json我有:

{ 
"private": true, 
"scripts": { 
"dev": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", 
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", 
"watch-poll": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --watch-poll --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", 
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js", 
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js" 
}, 
"devDependencies": { 
"axios": "^0.15.3", 
"cross-env": "^3.2.3", 
"laravel-mix": "^0.8.8", 
"lodash": "^4.17.4", 
"vue": "^2.1.10", 
"webpack": "^2.2.1" 
}, 
"dependencies": { 
"express": "^4.15.2", 
"ioredis": "^2.5.0", 
"socket.io": "^1.7.3" 
} 
} 

我试过laravel mix的每种方法来修复这也看到这个参考,但我不能得到任何解决方案,是否有可能使用elixer。 我有: Laravel混合版本:0.8.1 节点版(节点-v):6.9.1 NPM版(NPM -v):4.2 OS:ubuntu的16.4 LTS

+0

你能粘贴你得到的错误吗? – TheFallen

+0

兄弟我上面我提到的公共文件夹中并没有得到文件... –

+0

_but而我更新laravel混合我去这样eorrors_ – TheFallen

回答

1

Upgrading to Laravel 5.4

Laravel Tinker现在是一个独立的软件包,安装非常简单。

要求的包装,包括服务提供商:

作曲家需要laravel /鼓捣

当这完成后,服务提供者添加到您的config/app.php文件:

Laravel \ Tinker \ TinkerServiceProvider

利用浏览器套件你现有的测试要么需要被迁移到Laravel黄昏或包括older package

作曲家需要laravel /浏览器套件,测试--dev

要获得最新版本的修改composer.json文件并更改laravel /框架依赖于5.4。*。

Source

+0

我已经安装了.. –

+0

你跟随其他步骤? – brotherperes

+0

yess。我按照步骤..顺便说一句感谢.. –