-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgulpfile.js
103 lines (96 loc) · 3.44 KB
/
gulpfile.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
/*
* Project: @resnovas/smartcloud
* File: gulpfile.js
* Path: \gulpfile.js
* Created Date: Monday, September 5th 2022
* Author: Jonathan Stevens (Email: jonathan@resnovas.com, Github: /~https://github.com/TGTGamer)
* -----
* Contributing: Please read through our contributing guidelines. Included are directions for opening
* issues, coding standards, and notes on development. These can be found at /~https://github.com/resnovas/smartcloud/CONTRIBUTING.md
*
* Code of Conduct: This project abides by the Contributor Covenant, version 2.0. Please interact in ways that contribute to an open,
* welcoming, diverse, inclusive, and healthy community. Our Code of Conduct can be found at /~https://github.com/resnovas/smartcloud/CODE_OF_CONDUCT.md
* -----
* Copyright (c) 2023 Resnovas - All Rights Reserved
* LICENSE: GNU General Public License v3.0 or later (GPL-3.0+)
* -----
* This program has been provided under confidence of the copyright holder and is
* licensed for copying, distribution and modification under the terms of
* the GNU General Public License v3.0 or later (GPL-3.0+) published as the License,
* or (at your option) any later version of this license.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License v3.0 or later for more details.
*
* You should have received a copy of the GNU General Public License v3.0 or later
* along with this program. If not, please write to: jonathan@resnovas.com,
* or see https://www.gnu.org/licenses/gpl-3.0-standalone.html
*
* DELETING THIS NOTICE AUTOMATICALLY VOIDS YOUR LICENSE - PLEASE SEE THE LICENSE FILE FOR DETAILS
* -----
* Last Modified: 14-04-2023
* By: Jonathan Stevens (Email: jonathan@resnovas.com, Github: /~https://github.com/TGTGamer)
* Current Version: 1.0.0-beta.7
* HISTORY:
* Date By Comments
* ---------- --- ---------------------------------------------------------
*/
const rename = require('gulp-rename')
const exec = require('gulp-exec')
const jsonMerge = require('gulp-merge-json')
const jsonFmt = require('gulp-json-fmt')
const jsonConfig = require('gulp-json-config')
const pkg = require('gulp')
const {Testing} = require('./.gulp/testing.js')
const {src, dest, series} = pkg;
// const format = () =>
// src('package.json').pipe(exec('npm run xo --fix')).pipe(exec.reporter());
// Const schema = () =>
// src('package.json').pipe(exec('npm run schema')).pipe(exec.reporter());
const testall = series(
Testing.copy.config,
// Schema,
Testing.copy.context.issue,
Testing.run,
Testing.copy.context.pr,
Testing.run,
// Testing.copy.context.project,
// Testing.run,
Testing.copy.context.schedule,
Testing.run,
Testing.cleanup,
Testing.package,
// Testing.doc,
);
exports.testall = testall
const release = series(
() =>
src('.github/config/runners/*.json')
// .pipe(jsonConfig())
.pipe(
jsonMerge({
concatArrays: true,
fileName: 'runners.json',
transform(parsedJson) {
const array = [];
array.push(parsedJson);
return array;
},
}),
)
.pipe(jsonFmt(jsonFmt.PRETTY))
.pipe(dest('.github/config')),
() =>
src('.github/config/*.json')
.pipe(jsonConfig())
.pipe(jsonFmt(jsonFmt.PRETTY))
.pipe(
rename(path => {
path.basename = 'config';
}),
)
.pipe(dest('.github')),
);
exports.default = series(release, testall, /* format */);