@catladder/pipeline 1.160.0 → 1.161.1

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.
Files changed (37) hide show
  1. package/dist/bundles/catladder-gitlab/index.js +2 -2
  2. package/dist/constants.js +1 -1
  3. package/dist/tsconfig.tsbuildinfo +1 -1
  4. package/examples/cloud-run-memory-limit.ts +4 -0
  5. package/examples/cloud-run-meteor-with-worker.ts +4 -0
  6. package/examples/cloud-run-no-cpu-throttling.ts +4 -0
  7. package/examples/cloud-run-no-service.ts +4 -0
  8. package/examples/cloud-run-non-public.ts +4 -0
  9. package/examples/cloud-run-post-stop-job.ts +4 -0
  10. package/examples/cloud-run-service-gen2.ts +4 -0
  11. package/examples/cloud-run-service-increase-timout.ts +4 -0
  12. package/examples/cloud-run-service-with-volumes.ts +4 -0
  13. package/examples/cloud-run-storybook.ts +4 -0
  14. package/examples/cloud-run-with-ngnix.ts +4 -0
  15. package/examples/cloud-run-with-sql-reuse-db.ts +4 -0
  16. package/examples/cloud-run-with-sql.ts +4 -0
  17. package/examples/cloud-run-with-worker.ts +4 -0
  18. package/examples/custom-build-job-with-tests.ts +4 -0
  19. package/examples/custom-build-job.ts +4 -0
  20. package/examples/custom-deploy.ts +4 -0
  21. package/examples/custom-envs.ts +4 -0
  22. package/examples/custom-sbom-java.ts +4 -0
  23. package/examples/git-submodule.ts +4 -0
  24. package/examples/kubernetes-application-customization.ts +4 -0
  25. package/examples/kubernetes-with-cloud-sql-legacy.ts +4 -0
  26. package/examples/kubernetes-with-cloud-sql.ts +4 -0
  27. package/examples/kubernetes-with-jobs.ts +4 -0
  28. package/examples/kubernetes-with-mongodb.ts +4 -0
  29. package/examples/local-dot-env.ts +4 -0
  30. package/examples/meteor-kubernetes.ts +4 -0
  31. package/examples/multiline-var.ts +4 -0
  32. package/examples/native-app.ts +4 -0
  33. package/examples/node-build-with-custom-image.ts +4 -0
  34. package/examples/node-build-with-docker-additions.ts +4 -0
  35. package/examples/rails-k8s-with-worker.ts +4 -0
  36. package/examples/wait-for-other-deploy.ts +4 -0
  37. package/package.json +1 -1
@@ -26,3 +26,7 @@ const config: Config<{ CustomEnvs: "asdf" | "bla" }> = {
26
26
  };
27
27
 
28
28
  export default config;
29
+
30
+ export const information = {
31
+ title: "Custom: Envs",
32
+ };
@@ -32,3 +32,7 @@ const config: Config = {
32
32
  };
33
33
 
34
34
  export default config;
35
+
36
+ export const information = {
37
+ title: "Custom: Sbom Java",
38
+ };
@@ -24,3 +24,7 @@ const config: Config = {
24
24
  };
25
25
 
26
26
  export default config;
27
+
28
+ export const information = {
29
+ title: "Git Submodule",
30
+ };
@@ -53,3 +53,7 @@ const config: Config = {
53
53
  };
54
54
 
55
55
  export default config;
56
+
57
+ export const information = {
58
+ title: "K8s: Application Customization",
59
+ };
@@ -29,3 +29,7 @@ const config: Config = {
29
29
  };
30
30
 
31
31
  export default config;
32
+
33
+ export const information = {
34
+ title: "K8s: With Cloud SQL Legacy",
35
+ };
@@ -31,3 +31,7 @@ const config: Config = {
31
31
  };
32
32
 
33
33
  export default config;
34
+
35
+ export const information = {
36
+ title: "K8s: With Cloud SQL",
37
+ };
@@ -64,3 +64,7 @@ const config: Config = {
64
64
  };
65
65
 
66
66
  export default config;
67
+
68
+ export const information = {
69
+ title: "K8s: With Jobs",
70
+ };
@@ -45,3 +45,7 @@ const config: Config = {
45
45
  };
46
46
 
47
47
  export default config;
48
+
49
+ export const information = {
50
+ title: "K8s: With MongoDB",
51
+ };
@@ -21,3 +21,7 @@ const config: Config = {
21
21
  };
22
22
 
23
23
  export default config;
24
+
25
+ export const information = {
26
+ title: "Local Dot Env",
27
+ };
@@ -58,3 +58,7 @@ const config: Config = {
58
58
  };
59
59
 
60
60
  export default config;
61
+
62
+ export const information = {
63
+ title: "K8s: Meteor",
64
+ };
@@ -59,3 +59,7 @@ doouble quote: "
59
59
  };
60
60
 
61
61
  export default config;
62
+
63
+ export const information = {
64
+ title: "Multiline Environment Variables",
65
+ };
@@ -77,3 +77,7 @@ const config: Config = {
77
77
  };
78
78
 
79
79
  export default config;
80
+
81
+ export const information = {
82
+ title: "Native App",
83
+ };
@@ -20,3 +20,7 @@ const config: Config = {
20
20
  };
21
21
 
22
22
  export default config;
23
+
24
+ export const information = {
25
+ title: "Node: Build with Custom Image",
26
+ };
@@ -23,3 +23,7 @@ const config: Config = {
23
23
  };
24
24
 
25
25
  export default config;
26
+
27
+ export const information = {
28
+ title: "Node: Build with Docker Additions",
29
+ };
@@ -89,3 +89,7 @@ const config: Config = {
89
89
  };
90
90
 
91
91
  export default config;
92
+
93
+ export const information = {
94
+ title: "K8s: Rails with Worker",
95
+ };
@@ -31,3 +31,7 @@ const config: Config<{ CustomEnvs: "asdf" | "bla" }> = {
31
31
  };
32
32
 
33
33
  export default config;
34
+
35
+ export const information = {
36
+ title: "Wait for other deployment",
37
+ };
package/package.json CHANGED
@@ -52,7 +52,7 @@
52
52
  }
53
53
  ],
54
54
  "license": "MIT",
55
- "version": "1.160.0",
55
+ "version": "1.161.1",
56
56
  "scripts": {
57
57
  "build:tsc": "yarn tsc",
58
58
  "build": "yarn build:compile && yarn build:inline-variables && yarn build:bundle",