Merge pull request #6376 from devansh-webkul/removed

Removed Dependency And Traces
This commit is contained in:
Jitendra Singh 2022-05-02 11:37:12 +05:30 committed by GitHub
commit 4ee71c0706
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 3 deletions

View File

@ -28,7 +28,6 @@
"@inotom/vue-go-top": "^1.3.0",
"accounting": "^0.4.1",
"bootstrap-sass": "^3.4.1",
"colors": "^1.4.0",
"font-awesome": "^4.7.0",
"lazysizes": "^5.2.2",
"material-icons": "^1.10.6",

View File

@ -1,6 +1,5 @@
const path = require('path');
const mix = require('laravel-mix');
const colors = require('colors');
require('laravel-mix-merge-manifest');
require('laravel-mix-clean');
@ -17,7 +16,7 @@ const devPublicPath = path.join(
);
const publicPath = mix.inProduction() ? prodPublicPath : devPublicPath;
console.log(colors.bold.blue(`Assets will be published in: ${publicPath}`));
console.log(`Assets will be published in: ${publicPath}`);
const assetsPath = path.join(__dirname, 'src', 'Resources', 'assets');
const jsPath = path.join(assetsPath, 'js');