-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
135 lines (132 loc) · 4.1 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
module.exports = function (grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
// Before generating any new files, remove any previously-created files.
clean: {
build: ['build', 'src/packages', 'src/dist', 'src/node_modules']
},
jshint: {
all: ['Gruntfile.js', 'src/majin.js', 'src/version.json']
},
htmllint: {
options: {
reset: grunt.option('reset') || false,
stoponerror: false,
relaxerror: ['Bad value X-UA-Compatible for attribute http-equiv on element meta.'] // ignores these errors
},
files: {
src: ['src/*.html']
}
},
/*
copy: {
main: {
files: [
// includes files within path
{ expand: true, src: ['src/assets/icons/win/icon.ico'], dest: 'src/', filter: 'isFile' }
]
}
},
*/
replace: {
dist: {
options: {
patterns: [{
match: 'homepageURL',
replacement: "value"
}]
},
files: [
{ expand: true, flatten: true, src: ['src/version.json'], dest: 'src/' }
]
}
},
version: {
majin: {
src: ['package.json', 'src/package.json', 'src/version.json']
}
},
exec: {
list_files: {
cmd: 'echo npm run exec-test'
}
},
mkdir: {
all: {
options: {
mode: '0700',
create: ['build', 'build/target', 'build/packages', 'build/install']
}
}
},
electron: {
darwin: {
options: {
dir: 'src',
name: 'Majin',
platform: 'darwin',
arch: 'x64',
icon: 'assets/icons/mac/[email protected]',
CompanyName: '',
ProductName: 'Majin',
OriginalFilename: 'Majin',
InternalName: 'Majin',
FileDescription: 'Mobile Browser for the Desktop',
copyright: 'Copyright (c) 2024, Hugo V. Monteiro',
version: '2.0.0',
buildVersion: '00',
strictSSL: true,
ignore: 'node_modules/*',
overwrite: true,
asar: true,
out: 'build/target'
}
},
linux64: {
options: {
dir: 'src',
name: 'Majin',
platform: 'linux',
arch: 'x64',
icon: 'assets/icons/png/48x48.png',
CompanyName: 'Hugo V. Monteiro',
ProductName: 'Majin',
OriginalFilename: 'Majin',
InternalName: 'Majin',
FileDescription: 'Mobile Browser for the Desktop',
copyright: 'Copyright (c) 2024, Hugo V. Monteiro',
version: '2.0.0',
buildVersion: '00',
strictSSL: true,
ignore: 'node_modules/*',
overwrite: true,
asar: true,
out: 'build/target'
}
}
},
zip: {
'build/packages/majin-linux-x64.zip': ['build/target/majin-linux-x64']
}
});
// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-htmllint');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-replace');
grunt.loadNpmTasks('grunt-exec');
grunt.loadNpmTasks('grunt-mkdir');
grunt.loadNpmTasks('grunt-version');
grunt.loadNpmTasks('grunt-zip');
require('load-grunt-tasks')(grunt); // npm install --save-dev load-grunt-tasks
// grunt.loadNpmTasks('grunt-html-validation');
// Register tasks
grunt.registerTask('delete', ['clean']);
grunt.registerTask('default', ['clean', 'copy', 'version', 'jshint', 'exec']);
grunt.registerTask('packages', ['clean', 'copy', 'jshint', 'exec', 'mkdir', 'electron', 'zip']);
grunt.registerTask('release', ['clean', 'copy', 'version', 'jshint', 'exec', 'mkdir', 'electron', 'zip']);
// grunt.registerTask('default', ['clean', 'copy', 'version', 'jshint', 'htmllint', 'exec']);
// grunt.registerTask('packages', ['clean', 'copy', 'jshint', 'htmllint', 'exec', 'mkdir', 'electron', 'zip']);
// grunt.registerTask('release', ['clean', 'copy', 'version', 'jshint', 'htmllint', 'exec', 'mkdir', 'electron', 'zip']);
};