Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/linux/23.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php laravel mix未导入所有文件。升级至laravel 5.4_Php_Laravel 5.4_Laravel Mix - Fatal编程技术网

Php laravel mix未导入所有文件。升级至laravel 5.4

Php laravel mix未导入所有文件。升级至laravel 5.4,php,laravel-5.4,laravel-mix,Php,Laravel 5.4,Laravel Mix,我想将laravel 5,3升级到5.4,但在更新laravel mix时,我遇到了这样的错误。 在我的webpack.mix.js中,我包含以下文件: const { mix } = require('laravel-mix'); /* |-------------------------------------------------------------------------- | Mix Asset Management |--------------------------

我想将laravel 5,3升级到5.4,但在更新laravel mix时,我遇到了这样的错误。 在我的webpack.mix.js中,我包含以下文件:

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]
以前我用过elixer。。。 在my package.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 Mix版本:0.8.1 节点版本(Node-v):6.9.1 NPM版本(NPM-v):4.2 操作系统:ubuntu 16.4 lts

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

需要软件包并包括服务提供商:

作曲者需要拉威尔/修补匠

完成后,将服务提供商添加到config/app.php文件:

Laravel\Tinker\TinkerServiceProvider

使用浏览器套件的现有测试需要迁移到Laravel Dusk或包括:

composer需要laravel/浏览器套件测试--开发

要获得最新版本,请修改composer.json文件,并将laravel/framework依赖项更改为5.4.*


你能粘贴你得到的错误吗?兄弟,我上面提到过,我没有在公用文件夹中得到文件…但是当我更新laravel mix时,我出现了这样的错误。你是否遵循了其他步骤?很高兴这对你有所帮助