Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
owncloud-prm /
core /
vendor /
browser-update /
Delete
Unzip
Name
Size
Permission
Date
Action
.travis.yml
111
B
-rw-r--r--
2018-04-19 18:15
Gruntfile.js
1.7
KB
-rw-r--r--
2018-04-19 18:15
LICENSE
1.05
KB
-rw-r--r--
2018-04-19 18:15
README.markdown
3.63
KB
-rw-r--r--
2018-04-19 18:15
browser-update.js
23.08
KB
-rw-r--r--
2018-04-19 18:15
browser-update.min.js
19.15
KB
-rw-r--r--
2018-04-19 18:15
index.html
2.62
KB
-rw-r--r--
2018-04-19 18:15
Save
Rename
module.exports = function(grunt) { grunt.initConfig({ // Read Package Information pkg: grunt.file.readJSON('package.json'), // Generate File Banner banner: '/*! \n' + '* <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' + '<%= grunt.template.today("yyyy-mm-dd") %>\n' + '<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' + '* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>\n' + '*/\n', // Lint Javascript jshint: { all: { src: ['browser-update.js'], }, gruntfile: { src: ['Gruntfile.js'], } }, uglify: { options: { mangle: false, }, files: { src: 'browser-update.js', dest: './', // source files mask expand: true, // allow dynamic building flatten: true, // remove all unnecessary nesting ext: '.min.js' // replace .js to .min.js }, main: { options: { banner: '<%= banner %>' }, files: { 'browser-update.min.js': ['browser-update.js'] } }, }, // Watch for Changes watch: { // Live lint new scripts scripts: { files: ['assets/js/*.js'], tasks: ['jshint', 'concat', 'uglify'], options: { spawn: false, // Start a live reload server livereload: true, }, }, // Live lint Grunt file gruntfile: { files: 'Gruntfile.js', tasks: ['jshint:gruntfile', 'uglify'], }, }, }); // Load Grunt Modules // // Watch grunt.loadNpmTasks('grunt-contrib-watch'); // Lint JS grunt.loadNpmTasks('grunt-contrib-jshint'); // Uglify JS grunt.loadNpmTasks('grunt-contrib-uglify'); // Runt Grunt Tasks // grunt.registerTask('default', ['jshint','uglify', 'watch']); grunt.registerTask('test', ['jshint']); };