mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Rebuild frontend with new libraries.
This commit is contained in:
parent
ca1dcc8038
commit
b4f929b325
27
package.json
27
package.json
@ -1,25 +1,26 @@
|
|||||||
{
|
{
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "npm run development",
|
"development": "mix",
|
||||||
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
|
"watch": "mix watch",
|
||||||
"watch": "npm run development -- --watch",
|
"watch-poll": "mix watch -- --watch-options-poll=1000",
|
||||||
"watch-poll": "npm run watch -- --watch-poll",
|
"hot": "mix watch --hot",
|
||||||
"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": "mix --production",
|
||||||
"prod": "npm run production",
|
"prod": "mix --production"
|
||||||
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@johmun/vue-tags-input": "^2.1.0",
|
"@johmun/vue-tags-input": "^2",
|
||||||
"axios": "^0.21.1",
|
"axios": "^0.21",
|
||||||
"bootstrap-sass": "^3.3.7",
|
"bootstrap-sass": "^3",
|
||||||
"cross-env": "^7.0",
|
"cross-env": "^7.0",
|
||||||
"font-awesome": "^4.7.0",
|
"font-awesome": "^4.7.0",
|
||||||
"jquery": "^3.4.1",
|
"jquery": "^3",
|
||||||
"laravel-mix": "^5.0",
|
"laravel-mix": "^6.0",
|
||||||
|
"postcss": "^8.1",
|
||||||
"uiv": "^1.2",
|
"uiv": "^1.2",
|
||||||
"vue": "^2.6",
|
"vue": "^2.6",
|
||||||
"vue-i18n": "^8.22",
|
"vue-i18n": "^8.22",
|
||||||
"vue-template-compiler": "^2.6.11"
|
"vue-loader": "^15.9.5",
|
||||||
|
"vue-template-compiler": "^2.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
2
public/v1/js/app.js
vendored
2
public/v1/js/app.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/app_vue.js
vendored
2
public/v1/js/app_vue.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/create_transaction.js
vendored
2
public/v1/js/create_transaction.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/edit_transaction.js
vendored
2
public/v1/js/edit_transaction.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/profile.js
vendored
2
public/v1/js/profile.js
vendored
File diff suppressed because one or more lines are too long
30
webpack.mix.js
vendored
30
webpack.mix.js
vendored
@ -19,28 +19,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
let mix = require('laravel-mix');
|
let 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.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
// development:
|
|
||||||
// mix.webpackConfig({
|
|
||||||
// resolve: {
|
|
||||||
// alias: {
|
|
||||||
// 'vue$': 'vue/dist/vue.runtime.js'
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// });
|
|
||||||
|
|
||||||
// production
|
|
||||||
mix.webpackConfig({
|
mix.webpackConfig({
|
||||||
resolve: {
|
resolve: {
|
||||||
alias: {
|
alias: {
|
||||||
@ -49,9 +28,8 @@ mix.webpackConfig({
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
//mix.sourceMaps().js('resources/assets/js/app.js', 'public/v2/js');
|
|
||||||
mix.js('resources/assets/js/app.js', 'public/v1/js');
|
mix.js('resources/assets/js/app.js', 'public/v1/js');
|
||||||
mix.js('resources/assets/js/app_vue.js', 'public/v1/js');
|
mix.js('resources/assets/js/app_vue.js', 'public/v1/js').vue({version: 2});
|
||||||
mix.js('resources/assets/js/create_transaction.js', 'public/v1/js');
|
mix.js('resources/assets/js/create_transaction.js', 'public/v1/js').vue({version: 2});
|
||||||
mix.js('resources/assets/js/edit_transaction.js', 'public/v1/js');
|
mix.js('resources/assets/js/edit_transaction.js', 'public/v1/js').vue({version: 2});
|
||||||
mix.js('resources/assets/js/profile.js', 'public/v1/js');
|
mix.js('resources/assets/js/profile.js', 'public/v1/js').vue({version: 2});
|
||||||
|
Loading…
Reference in New Issue
Block a user