-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGruntfile.js
73 lines (65 loc) · 1.8 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
module.exports = function(grunt) {
// Load the package JSON file
var pkg = grunt.file.readJSON('package.json');
// get the root path of the project
var projectRoot = 'src/App_Plugins/' + pkg.name + '/';
var destRoot = 'files/';
// Load information about the assembly
var assembly = grunt.file.readJSON('config/meta.json');
// Get the version of the package
var version = assembly.informationalVersion ? assembly.informationalVersion : assembly.version;
grunt.initConfig({
pkg: pkg,
clean: {
files: [
destRoot + '**/*.*'
]
},
copy: {
release: {
files: [
{
expand: true,
cwd: projectRoot,
src: ['**/*.*'],
dest: destRoot
}
]
}
},
zip: {
release: {
cwd: destRoot,
src: [
destRoot + '**/*.*'
],
dest: 'releases/github/' + pkg.name + '.v' + version + '.zip'
}
},
umbracoPackage: {
dist: {
src: destRoot,
dest: 'releases/umbraco',
options: {
name: pkg.name,
version: version,
url: pkg.url,
license: pkg.license.name,
licenseUrl: pkg.license.url,
author: pkg.author.name,
authorUrl: pkg.author.url,
readme: pkg.readme,
outputName: pkg.name + '.v' + version + '.zip',
manifest: 'package.xml'
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-nuget');
grunt.loadNpmTasks('grunt-zip');
grunt.loadNpmTasks('grunt-umbraco-package');
grunt.registerTask('dev', ['clean', 'copy', 'umbracoPackage']);
grunt.registerTask('default', ['dev']);
};