-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
144 lines (133 loc) · 5.14 KB
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/**
* Vextension-Web | Copyright © 2021 | vironlab.eu | All Rights Reserved.
* ___ _______ ______ ______
* __ | / /___(_)______________ _______ ___ / ______ ____ /_
* __ | / / __ / __ ___/_ __ \__ __ \__ / _ __ '/__ __ \
* __ |/ / _ / _ / / /_/ /_ / / /_ /___/ /_/ / _ /_/ /
* _____/ /_/ /_/ \____/ /_/ /_/ /_____/\__,_/ /_.___/
* ____ _______ _______ _ ___ ____ __ __ _____ _ _ _____
* | _ \| ____\ \ / / ____| | / _ \| _ \| \/ | ____| \ | |_ _|
* | | | | _| \ \ / /| _| | | | | | | |_) | |\/| | _| | \| | | |
* | |_| | |___ \ V / | |___| |__| |_| | __/| | | | |___| |\ | | |
* |____/|_____| \_/ |_____|_____\___/|_| |_| |_|_____|_| \_| |_|
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License,
* or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
* You should have received a copy of the GNU Lesser General Public License along with this program.
*
* If not, see <http://www.gnu.org/licenses/>.
*
* Contact:
*
* Discordserver: https://discord.gg/wvcX92VyEH
* Website: https://vironlab.eu/
* Mail: [email protected]
*
*/
'use strict'; // https://www.w3schools.com/js/js_strict.asp
module.exports = (grunt) => {
var fs = require('fs');
var gzip = require('gzip-js');
var CLIEngine = require('eslint').CLIEngine;
var stripJSONComments = require('strip-json-comments');
function readOptionalJSON(filepath) {
let data = {};
try {
data = JSON.parse(
stripJSONComments(
fs.readFileSync(filepath, {
encoding: 'utf8',
}),
),
);
} catch (e) {}
return data;
}
if (!grunt.option('filename')) {
grunt.option('filename', 'vextension-web.js');
}
var banner = `
/**
* Vextension-Web v<%= pkg.version %>| Copyright (C) 2021 | vironlab.eu
* Licensed under the MIT License
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* You should have received a copy of the MIT License
*
* Repository:
* Github: https://github.com/VironLab/vextension-web
* NPM: https://www.npmjs.com/package/vextension-web
* Contact:
* Discordserver: https://discord.gg/wvcX92VyEH
* Website: https://vironlab.eu/
* Mail: [email protected]
*
*/\n`;
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
dst: readOptionalJSON('dist/.destination.json'),
authors: {
prior: ['depascaldc <[email protected]>'],
order: 'count',
},
watch: {
files: ['src/**/*.js'],
tasks: ['uglify', 'compare_size'],
},
build: {
all: {
dest: 'dist/vextension-web.js',
included: ['vextension'],
},
},
uglify: {
all: {
files: {
"dist/<%= grunt.option('filename').replace('.js', '.min.js') %>": "dist/<%= grunt.option('filename') %>",
},
options: {
preserveComments: false,
sourceMap: true,
sourceMapName: "dist/<%= grunt.option('filename').replace('.js', '.min.map') %>",
report: 'min',
output: {
ascii_only: true,
},
banner: banner,
compress: {
hoist_funs: false,
loops: false,
},
},
},
},
compare_size: {
files: ['src/<%= pkg.name %>.js', 'dist/<%= pkg.name %>.min.js'],
options: {
compress: {
gz: function (contents) {
return gzip.zip(contents, {}).length;
},
},
cache: 'build/.sizecache.json',
},
},
});
// Load grunt tasks from NPM packages
require('load-grunt-tasks')(grunt);
// Integrate Vextension-Web special tasks
grunt.loadTasks('build/tasks');
grunt.registerTask('default', ['build:*:*', 'uglify', 'compare_size', 'update-authors']);
};