nav tabs on admin dashboard

This commit is contained in:
2019-03-07 00:20:34 -06:00
parent f73d6ae228
commit e4f473f376
11661 changed files with 216240 additions and 1544253 deletions

12
node_modules/laravel-mix/src/File.js generated vendored
View File

@@ -1,8 +1,8 @@
let os = require("os");
let os = require('os');
let md5 = require('md5');
let path = require('path');
let fs = require('fs-extra');
let uglify = require('uglify-js');
let Terser = require('terser');
let UglifyCss = require('clean-css');
class File {
@@ -151,7 +151,7 @@ class File {
if (typeof body === 'object') {
body = JSON.stringify(body, null, 4);
}
body = body + os.EOL;
fs.writeFileSync(this.absolutePath, body);
@@ -163,9 +163,7 @@ class File {
* Read the file's contents.
*/
read() {
return fs.readFileSync(this.path(), {
encoding: 'utf-8'
});
return fs.readFileSync(this.path(), 'utf8');
}
/**
@@ -201,7 +199,7 @@ class File {
minify() {
if (this.extension() === '.js') {
this.write(
uglify.minify(this.path(), Config.uglify.uglifyOptions).code
Terser.minify(this.read(), Config.terser.terserOptions).code
);
}