@catladder/pipeline 2.0.0 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/constants.js
CHANGED
|
@@ -4,5 +4,5 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.DOCKER_REGISTRY = exports.PIPELINE_IMAGE_TAG = void 0;
|
|
7
|
-
exports.PIPELINE_IMAGE_TAG = "v2-0-
|
|
7
|
+
exports.PIPELINE_IMAGE_TAG = "v2-0-2-f08f9a54" || "latest";
|
|
8
8
|
exports.DOCKER_REGISTRY = "git.panter.ch:5001/catladder/catladder" || "git.panter.ch:5001/catladder/catladder";
|
package/package.json
CHANGED
|
@@ -37,13 +37,6 @@ async function getExampleIgnores(): Promise<string[]> {
|
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
|
|
40
|
-
type ExampleTestLines = {
|
|
41
|
-
importLine: string;
|
|
42
|
-
testString: string;
|
|
43
|
-
kebabName: string;
|
|
44
|
-
camelName: string;
|
|
45
|
-
};
|
|
46
|
-
|
|
47
40
|
async function main() {
|
|
48
41
|
const exampleIgnores = await getExampleIgnores();
|
|
49
42
|
const [exampleFiles, existingTestFiles] = await Promise.all([
|