@catladder/pipeline 1.133.8 → 1.133.10

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.
@@ -0,0 +1,28 @@
1
+ import type { Config } from "../src";
2
+ import { createAllPipelines } from "./__utils__/helpers";
3
+
4
+ const config: Config = {
5
+ appName: "test-app",
6
+ customerName: "pan",
7
+ components: {
8
+ www: {
9
+ dir: "www",
10
+ build: {
11
+ type: "node",
12
+ docker: {
13
+ additionsBegin: ["RUN apk add --no-cache openssl1.1-compat-dev"],
14
+ additionsEnd: ["RUN yarn rebuild"],
15
+ },
16
+ },
17
+ deploy: {
18
+ type: "google-cloudrun",
19
+ projectId: "asdf",
20
+ region: "asia-east1",
21
+ },
22
+ },
23
+ },
24
+ };
25
+
26
+ it("matches snapshot", async () => {
27
+ expect(await createAllPipelines(config)).toMatchSnapshot();
28
+ });
package/package.json CHANGED
@@ -52,7 +52,7 @@
52
52
  }
53
53
  ],
54
54
  "license": "MIT",
55
- "version": "1.133.8",
55
+ "version": "1.133.10",
56
56
  "scripts": {
57
57
  "build:tsc": "yarn tsc",
58
58
  "build": "yarn build:compile && yarn build:inline-variables && yarn build:bundle",