-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.cjs
86 lines (82 loc) · 2.12 KB
/
Gruntfile.cjs
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
'use strict'
module.exports = function (grunt) {
// Project configurations.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
replace: {
rhel_X86_spec_file: {
src: ['dist/rhel/s3-folder-sync-x86_64.spec'],
overwrite: true,
replacements: [
{
from: /(?<=Version: ).*$/gm,
to: '<%= pkg.version %>'
}]
},
rhel_aarch64_spec_file: {
src: ['dist/rhel/s3-folder-sync-aarch64.spec'],
overwrite: true,
replacements: [
{
from: /(?<=Version: ).*$/gm,
to: '<%= pkg.version %>'
}]
},
debian_changelog: {
src: ['dist/debian/changelog'],
overwrite: true,
replacements: [
{
from: /(?<=\().+?(?=\))/gm,
to: '<%= pkg.version %>'
},
{
from: /(?<=mozmail.com> ).*$/gm,
to: '<%= grunt.template.today("ddd, dd mmm yyyy HH:MM:ss o") %>'
}]
},
debian_version: {
src: ['dist/debian/version'],
overwrite: true,
replacements: [
{
from: /(?<=version=).*$/gm,
to: '<%= pkg.version %>'
}]
},
},
concat: {
options: {
separator: '\n\n',
process: function (src, filepath) {
return '--------- ' + filepath + ' ---------\n' + src
}
},
dist: {
src: [
's3-folder-sync.js',
's3foldersync.conf',
'libs/**/*.js',
'libs/**/*.mjs',
'dist/**/*.*',
'package.json',
'README.md'
],
dest: 'codebase.txt'
}
}
})
// Load Plugins / Tasks
grunt.loadNpmTasks('grunt-text-replace')
grunt.loadNpmTasks('grunt-contrib-concat')
// Creates a codebase.txt file to use with AI / LLM tools.
grunt.registerTask('create-codebase', ['concat'])
// Default task(s).
grunt.registerTask('default',
[
'replace:rhel_X86_spec_file',
'replace:rhel_aarch64_spec_file',
'replace:debian_changelog',
'replace:debian_version'
])
}