forked from Roll20/roll20-api-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
102 lines (98 loc) · 2.92 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
'use strict';
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('script.json'),
concat: {
dist: {
src: [
'src/index.js',
'src/Commands.js',
'src/GarbageCollection.js',
'src/Macros.js',
'src/ObjProps.js',
'src/State.js',
'src/Wizard.js',
'src/themes/index.js',
'src/themes/CheckItOutTheme.js',
'src/themes/impl/index.js',
'src/themes/impl/D20System.js',
'src/themes/impl/DnD3p5e.js',
'src/themes/impl/DnD3p5eSheet.js',
'src/themes/impl/DnD4e.js',
'src/themes/impl/DnD4eSheet.js',
'src/themes/impl/GammaWorld7E.js',
'src/themes/impl/GammaWorld7ESheet.js',
'src/themes/impl/DnD5e.js',
'src/themes/impl/DnD5eCommunity.js',
'src/themes/impl/DnD5eRoll20.js',
'src/themes/impl/DnD5eShaped.js',
'src/themes/impl/Pathfinder.js',
'src/themes/impl/PathfinderRoll20.js',
'src/themes/impl/PathfinderCommunity.js',
'src/themes/impl/PathfinderSimple.js',
'src/themes/impl/Starfinder.js',
'src/themes/impl/StarfinderRoll20.js',
'src/themes/impl/StarfinderSimple.js',
'src/themes/impl/DefaultTheme.js',
'src/utils/index.js',
'src/utils/Chat.js',
'src/utils/Menu.js'
],
dest: '<%= pkg.version %>/<%= pkg.script %>'
}
},
jshint: {
dist: {
src: ['src/**/*.js']
},
options: {
eqeqeq: true,
esversion: 6,
freeze: true,
globals: {
// Symbols defined by API scripts
bshields: false,
CharSheetUtils: false,
CheckItOut: true,
HtmlBuilder: false,
VecMath: false,
// Symbols defined by Roll20
_: false,
createObj: false,
findObjs: false,
getObj: false,
globalconfig: true,
playerIsGM: false,
log: false,
on: false,
sendChat: false,
state: true
},
nonbsp: true,
nonew: true,
strict: true,
undef: true,
unused: true
}
},
'string-replace': {
dist: {
files: {
'<%= pkg.version %>/<%= pkg.script %>': '<%= pkg.version %>/<%= pkg.script %>'
}
},
options: {
replacements: [
{
pattern: 'SCRIPT_VERSION',
replacement: '<%= pkg.version %>'
}
]
}
}
});
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-string-replace');
grunt.registerTask('default', ['jshint', 'concat', 'string-replace']);
};