forked from DefinitelyTyped/definitelytyped.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
136 lines (124 loc) · 3.11 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
module.exports = function (grunt) {
'use strict';
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-gh-pages');
grunt.loadTasks('./tasks');
function getDeployMessage() {
var ret = '\n\n';
if (process.env.TRAVIS !== 'true') {
ret += 'did not run on travis-ci';
return ret;
}
ret += 'branch: ' + (process.env.TRAVIS_BRANCH || '<unknown>') + '\n';
ret += 'SHA: ' + (process.env.TRAVIS_COMMIT || '<unknown>') + '\n';
ret += 'range SHA: ' + (process.env.TRAVIS_COMMIT_RANGE || '<unknown>') + '\n';
ret += 'build id: ' + (process.env.TRAVIS_BUILD_ID || '<unknown>') + '\n';
ret += 'build number: ' + (process.env.TRAVIS_BUILD_NUMBER || '<unknown>') + '\n';
return ret;
}
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
clean: {
out: [
'out/**/*'
]
},
jshint: {
options: grunt.util._.extend(grunt.file.readJSON('.jshintrc'), {
reporter: './node_modules/jshint-path-reporter',
node: true
}),
support: {
src: ['Gruntfile.js', 'docpad.js']
},
source: ['src/documents/scripts/**/*.js']
},
copy: {
rootfiles: {
src: ['README.md', 'LICENCE*'],
dest: 'out/'
}
},
'gh-pages': {
options: {
base: 'out',
branch: 'master'
},
publish: {
options: {
repo: 'https://github.com/DefinitelyTyped/definitelytyped.github.io.git',
message: 'publish (cli)'
},
src: ['**']
},
deploy: {
options: {
repo: 'https://' + process.env.GH_TOKEN + '@github.com/DefinitelyTyped/definitelytyped.github.io.git',
message: 'publish (auto)' + getDeployMessage(),
silent: true,
user: {
name: 'dt-bot',
email: '[email protected]'
}
},
src: ['**']
}
},
docpad: {
options: require('./docpad'),
generate: {
action: 'generate'
},
publish: {
action: 'generate',
options: {
env: 'production'
}
},
run: {
action: 'run'
}
}
});
grunt.registerTask('check-deploy', function() {
this.requires(['build']);
if (process.env.TRAVIS === 'true' && process.env.TRAVIS_SECURE_ENV_VARS === 'true' && process.env.TRAVIS_PULL_REQUEST === 'false') {
grunt.log.writeln('executing deployment');
grunt.task.run('gh-pages:deploy');
}
else {
grunt.log.writeln('skipping deployment');
}
});
//
grunt.registerTask('prep', 'Clean and prepare.', [
'clean:out',
'jshint:support',
'jshint:source',
]);
grunt.registerTask('test', 'Build in development env and run tests.', [
'prep',
'docpad:generate',
// more
]);
grunt.registerTask('watch', 'Start watch and run LiveReload server on development env.', [
'prep',
'docpad:run',
]);
grunt.registerTask('build', 'Build with production env.', [
'prep',
'docpad:publish',
'copy:rootfiles'
]);
grunt.registerTask('publish', 'Build and push to master using CLI.', [
'build',
'gh-pages:publish'
]);
grunt.registerTask('deploy', 'Build with production env for bot.', [
'build',
'check-deploy'
]);
grunt.registerTask('default', ['build']);
};