This repository has been archived by the owner on May 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
aspects.ts
116 lines (110 loc) · 3.79 KB
/
aspects.ts
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
/*
* Copyright © 2019 Atomist, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {
branchCount,
ChangelogAspect,
CodeMetricsAspect,
CodeOfConduct,
CodeOwnership,
ContributingAspect,
ExposedSecrets,
GitRecency,
globAspect,
License,
LicensePresence,
} from "@atomist/sdm-pack-aspect";
import { buildTimeAspect } from "@atomist/sdm-pack-aspect/lib/aspect/delivery/BuildAspect";
import { LeinDeps } from "@atomist/sdm-pack-clojure";
import {
DockerfilePath,
DockerFrom,
DockerPorts,
} from "@atomist/sdm-pack-docker";
import {
Aspect,
} from "@atomist/sdm-pack-fingerprints";
import { K8sSpecs } from "./k8s/spec";
import { CsProjectTargetFrameworks } from "./microsoft/CsProjectTargetFrameworks";
import { NpmDependencies } from "./node/npmDependencies";
import { TypeScriptVersion } from "./node/TypeScriptVersion";
import { commitRisk } from "./push/commitRisk";
import * as commonCommitRiskScorers from "./push/commonCommitRiskScorers";
import {
ConfirmedTags,
suggestTag,
} from "./push/suggestTag";
import { PythonDependencies } from "./python/pythonDependencies";
import { DirectMavenDependencies } from "./spring/directMavenDependencies";
import { SpringBootStarter } from "./spring/springBootStarter";
import { SpringBootVersion } from "./spring/springBootVersion";
import { TravisScriptsAspect } from "./travis/travisAspects";
/**
* The aspects managed by this SDM.
* Modify this list to customize with your own aspects.
*/
export function aspects(): Aspect[] {
return [
DockerFrom,
DockerfilePath,
DockerPorts,
License,
// Based on license, decide the presence of a license: Not spread
LicensePresence,
SpringBootStarter,
TypeScriptVersion,
new CodeOwnership(),
NpmDependencies,
CodeOfConduct,
ExposedSecrets,
TravisScriptsAspect,
branchCount,
GitRecency,
// This is expensive as it requires deeper cloning
// gitActiveCommitters(30),
// This is also expensive
CodeMetricsAspect,
// StackAspect,
// CiAspect,
// JavaBuild,
// Don't show these
globAspect({ name: "csproject", displayName: undefined, glob: "*.csproj" }),
globAspect({ name: "snyk", displayName: undefined, glob: ".snyk" }),
ChangelogAspect,
ContributingAspect,
globAspect({ name: "azure-pipelines", displayName: "Azure pipeline", glob: "azure-pipelines.yml" }),
globAspect({ name: "readme", displayName: "Readme file", glob: "README.md" }),
CsProjectTargetFrameworks,
SpringBootVersion,
// allMavenDependenciesAspect, // This is expensive
DirectMavenDependencies,
PythonDependencies,
K8sSpecs,
LeinDeps,
// Tags commit based
commitRisk({
scorers: [
commonCommitRiskScorers.fileChangeCount({ limitTo: 2 }),
commonCommitRiskScorers.pomChanged(),
],
}),
// Time builds
buildTimeAspect(),
// Asks for human intervention to tag the commit
suggestTag({ tag: "frivolous", reason: "You people are silly", test: async () => true }),
// Show confirmed tag information
ConfirmedTags,
];
}