This repository has been archived by the owner on Aug 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Gruntfile.js
153 lines (138 loc) · 3.49 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
145
146
147
148
149
150
151
152
153
var sass = require('node-sass');
module.exports = function (grunt) {
// Project configuration
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
watch: {
'docs-sass': {
files: ['src/scss/**/*.scss'],
tasks: ['sass'],
options: {
nospawn: true
}
},
'docs-js': {
files: ['src/**/*.js'],
tasks: ['copy:assemble', 'eslint:default'],
options: {
nospawn: true
}
},
'docs-img': {
files: ['src/img/**/*'],
tasks: ['newer:imagemin'],
options: {
nospawn: true
}
},
'docs-assemble': {
files: ['src/**/*.md', 'src/**/*.hbs'],
tasks: ['assemble:dev', 'eslint:default'],
options: {
nospawn: true,
livereload: true
}
}
},
eslint: {
default: {
src: ['src/**/*.js', 'src/**/*.hbs']
},
all: {
src: ['src/**/*.js', 'src/**/*.md', 'src/**/*.hbs']
}
},
connect: {
docs: {
options: {
port: 8001,
hostname: '0.0.0.0',
base: './built/',
open: true
}
}
},
assemble: {
options: {
layout: 'layout.hbs',
layoutdir: 'src/layouts/',
partials: 'src/partials/**/*.hbs',
helpers: ['src/helpers/**/*.js']
},
dev: {
options: {
data: ['data/*.json', 'package.json'],
assets: 'built/'
},
files: [{
cwd: 'src/pages',
dest: 'built',
expand: true,
src: ['**/*.hbs', '**/*.md']
}]
},
dist: {
options: {
data: ['data/secret.json', 'data/siteData.json', 'package.json'],
assets: 'built/'
},
files: [{
cwd: 'src/pages',
dest: 'built',
expand: true,
src: ['**/*.hbs', '**/*.md']
}]
}
},
copy: {
assemble: {
files: [
{ src: 'src/js/script.js', dest: 'built/js/script.js' }
]
}
},
imagemin: {
dynamic: {
files: [{
expand: true,
cwd: 'src/img',
src: ['**/*.{png,jpg,gif}'],
dest: 'built/img'
}]
}
},
sass: {
options: {
implementation: sass,
sourceMap: true
},
site: {
files: {
'built/css/style.css': 'src/scss/style.scss'
}
}
},
'gh-pages': {
options: {
base: 'built',
repo: 'https://github.com/Esri/esri-leaflet.git'
},
src: ['**']
}
});
// Development Tasks
grunt.registerTask('default', ['docs']);
// Documentation Site Tasks
grunt.registerTask('docs', ['newer:assemble:dev', 'sass', 'copy', 'imagemin', 'connect:docs', 'watch']);
// Documentation Site Tasks
grunt.registerTask('docs:build', ['eslint:default', 'newer:assemble:dist', 'sass', 'copy', 'imagemin']);
// Documentation Site Tasks
grunt.registerTask('docs:deploy', ['docs:build', 'gh-pages']);
// Linting
// Since the JS files inline in our HTML files is a bit weird, the default should be not running it over the HTML
// files, but you can still run "grunt eslint:all" if you're specifically working on those files and you want a test.
grunt.registerTask('lint', ['eslint:default']);
grunt.registerTask('lint:all', ['eslint:all']);
// Require all grunt modules
require('load-grunt-tasks')(grunt, { pattern: ['grunt-*', 'assemble'] });
};