@catladder/pipeline 1.67.2 โ 1.69.0
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/build/index.js +8 -0
- package/dist/build/rails/build.d.ts +3 -0
- package/dist/build/rails/build.js +37 -0
- package/dist/build/rails/index.d.ts +3 -0
- package/dist/build/rails/index.js +49 -0
- package/dist/build/rails/test.d.ts +3 -0
- package/dist/build/rails/test.js +107 -0
- package/dist/build/types.d.ts +10 -2
- package/dist/bundles/catladder-gitlab/index.js +3 -3
- package/dist/constants.js +1 -1
- package/dist/context/getEnvironmentVariables.js +3 -2
- package/dist/deploy/cloudRun/deployJob.js +36 -6
- package/dist/deploy/types/googleCloudRun.d.ts +23 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/gitlab-types.d.ts +5 -1
- package/package.json +1 -1
- package/src/build/index.ts +5 -0
- package/src/build/rails/build.ts +29 -0
- package/src/build/rails/index.ts +8 -0
- package/src/build/rails/test.ts +82 -0
- package/src/build/types.ts +9 -1
- package/src/context/getEnvironmentVariables.ts +2 -1
- package/src/deploy/cloudRun/deployJob.ts +26 -3
- package/src/deploy/types/googleCloudRun.ts +23 -0
- package/src/types/gitlab-types.ts +5 -1
package/dist/constants.js
CHANGED
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
|
|
3
3
|
exports.__esModule = true;
|
|
4
4
|
exports.DOCKER_REGISTRY = exports.PIPELINE_IMAGE_TAG = void 0;
|
|
5
|
-
exports.PIPELINE_IMAGE_TAG = "v1-
|
|
5
|
+
exports.PIPELINE_IMAGE_TAG = "v1-69-0-05856896" || "";
|
|
6
6
|
exports.DOCKER_REGISTRY = "git.panter.ch:5001/catladder/catladder" || "";
|
|
@@ -237,8 +237,9 @@ var getEnvironmentVariables = function (config, componentName, env, commitInfo,
|
|
|
237
237
|
additionalEnvVars = deployConfigRaw ? deploy_1.DEPLOY_TYPES[deployConfigRaw.type].getAdditionalEnvVars(environmentContext) : {};
|
|
238
238
|
host = (_c = (_b = envConfigRaw === null || envConfigRaw === void 0 ? void 0 : envConfigRaw.host) !== null && _b !== void 0 ? _b : additionalEnvVars.HOST_CANONICAL) !== null && _c !== void 0 ? _c : "unknown-host.example.com";
|
|
239
239
|
url = "https://".concat(host);
|
|
240
|
-
predefinedVariables = __assign(__assign(__assign({}, basePredefinedVariables), {
|
|
241
|
-
HOST: host
|
|
240
|
+
predefinedVariables = __assign(__assign(__assign(__assign({}, basePredefinedVariables), config.components[componentName].build.type === "rails" ? {} : {
|
|
241
|
+
HOST: host
|
|
242
|
+
}), {
|
|
242
243
|
ROOT_URL: url
|
|
243
244
|
}), additionalEnvVars);
|
|
244
245
|
}
|
|
@@ -67,7 +67,7 @@ var setExtraVarsScripts = function (deployConfig) {
|
|
|
67
67
|
};
|
|
68
68
|
|
|
69
69
|
var createGoogleCloudRunDeployJobs = function (context) {
|
|
70
|
-
var _a;
|
|
70
|
+
var _a, _b, _c;
|
|
71
71
|
|
|
72
72
|
var deployConfig = context.componentConfig.deploy;
|
|
73
73
|
|
|
@@ -127,12 +127,31 @@ var createGoogleCloudRunDeployJobs = function (context) {
|
|
|
127
127
|
};
|
|
128
128
|
});
|
|
129
129
|
|
|
130
|
-
var getServiceDeployScript = function (service) {
|
|
130
|
+
var getServiceDeployScript = function (service, nameSuffix) {
|
|
131
131
|
var _a;
|
|
132
132
|
|
|
133
|
+
var customConfig = service !== true ? service : undefined;
|
|
133
134
|
var command = service !== true ? (_a = service === null || service === void 0 ? void 0 : service.command) !== null && _a !== void 0 ? _a : context.componentConfig.build.startCommand : undefined;
|
|
134
135
|
var commandArg = command ? "--command=\"".concat(command.split(" ").join(","), "\"") : "";
|
|
135
|
-
|
|
136
|
+
var args = {
|
|
137
|
+
"allow-unauthenticated": true,
|
|
138
|
+
"min-instances": customConfig === null || customConfig === void 0 ? void 0 : customConfig.minInstances,
|
|
139
|
+
"max-instances": customConfig === null || customConfig === void 0 ? void 0 : customConfig.maxInstances,
|
|
140
|
+
"no-cpu-throttling": customConfig === null || customConfig === void 0 ? void 0 : customConfig.noCpuThrottling
|
|
141
|
+
};
|
|
142
|
+
var argsString = Object.entries(args).filter(function (_a) {
|
|
143
|
+
var _b = __read(_a, 2),
|
|
144
|
+
value = _b[1];
|
|
145
|
+
|
|
146
|
+
return !(0, lodash_1.isNil)(value);
|
|
147
|
+
}).map(function (_a) {
|
|
148
|
+
var _b = __read(_a, 2),
|
|
149
|
+
key = _b[0],
|
|
150
|
+
value = _b[1];
|
|
151
|
+
|
|
152
|
+
return "--".concat(key).concat(value !== true ? "=".concat(value) : "");
|
|
153
|
+
}).join(" ");
|
|
154
|
+
return "gcloud run deploy ".concat(serviceName).concat(nameSuffix !== null && nameSuffix !== void 0 ? nameSuffix : "", " ").concat(commandArg, " ").concat(commonDeployArgs, " --env-vars-file=____envvars.yaml ").concat(argsString);
|
|
136
155
|
};
|
|
137
156
|
|
|
138
157
|
var getJobCreateScriptsForJob = function (jobName, job) {
|
|
@@ -189,10 +208,21 @@ var createGoogleCloudRunDeployJobs = function (context) {
|
|
|
189
208
|
});
|
|
190
209
|
};
|
|
191
210
|
|
|
192
|
-
var deployScripts = __spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray([], __read((0, gcloudServiceAccountLoginCommands_1.gcloudServiceAccountLoginCommands)(context)), false), __read(setExtraVarsScripts(deployConfig)), false), __read(pushImageToArtifactsRegistry), false), ["echo \"$ENV_VARS\" > ____envvars.yaml"], false), __read(deployConfig.cloudSql ? (0, database_1.getDatabaseCreateScript)(context, deployConfig) // we create the db, so that we can also delete it afterwards
|
|
193
|
-
: []), false), __read(getCreateScheduleScripts()), false), __read(getJobCreateScripts()), false), __read(getJobRunScripts("preDeploy")), false), __read(deployConfig.service !== false ? [getServiceDeployScript(deployConfig.service)] : []), false), __read(
|
|
211
|
+
var deployScripts = __spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray([], __read((0, gcloudServiceAccountLoginCommands_1.gcloudServiceAccountLoginCommands)(context)), false), __read(setExtraVarsScripts(deployConfig)), false), __read(pushImageToArtifactsRegistry), false), ["echo \"$ENV_VARS\" > ____envvars.yaml"], false), __read(deployConfig.cloudSql ? (0, database_1.getDatabaseCreateScript)(context, deployConfig) // we create the db, so that we can also delete it afterwards
|
|
212
|
+
: []), false), __read(getCreateScheduleScripts()), false), __read(getJobCreateScripts()), false), __read(getJobRunScripts("preDeploy")), false), __read(deployConfig.service !== false ? [getServiceDeployScript(deployConfig.service)] : []), false), __read(Object.entries((_b = deployConfig.additionalServices) !== null && _b !== void 0 ? _b : {}).map(function (_a) {
|
|
213
|
+
var _b = __read(_a, 2),
|
|
214
|
+
name = _b[0],
|
|
215
|
+
service = _b[1];
|
|
216
|
+
|
|
217
|
+
return getServiceDeployScript(service, "-" + name);
|
|
218
|
+
})), false), __read(getJobRunScripts("postDeploy")), false), ["docker image rm ".concat(gcloudImageName)], false);
|
|
219
|
+
|
|
220
|
+
var stopScripts = __spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray(__spreadArray([], __read((0, gcloudServiceAccountLoginCommands_1.gcloudServiceAccountLoginCommands)(context)), false), __read(deployConfig.service !== false ? ["gcloud run services delete ".concat(serviceName, " ").concat(commonArgs)] : []), false), __read(Object.entries((_c = deployConfig.additionalServices) !== null && _c !== void 0 ? _c : {}).map(function (_a) {
|
|
221
|
+
var _b = __read(_a, 1),
|
|
222
|
+
name = _b[0];
|
|
194
223
|
|
|
195
|
-
|
|
224
|
+
return "gcloud run services delete ".concat(serviceName, "-").concat(name, " ").concat(commonArgs);
|
|
225
|
+
})), false), __read(getDeleteSchedulesScripts()), false), __read(getDeleteJobsScripts()), false), __read(deployConfig.cloudSql && deployConfig.cloudSql.deleteDatabaseOnStop ? (0, database_1.getDatabaseDeleteScript)(context, deployConfig) : []), false);
|
|
196
226
|
|
|
197
227
|
return [(0, lodash_1.merge)({}, baseDeploymentJob, (0, docker_1.getDockerJobBaseProps)(context), {
|
|
198
228
|
artifacts: {
|
|
@@ -32,6 +32,22 @@ export declare type DeployConfigCloudRunService = {
|
|
|
32
32
|
* command / entrypoint, fallsback to buildConfig.startcommand
|
|
33
33
|
*/
|
|
34
34
|
command?: string;
|
|
35
|
+
/**
|
|
36
|
+
* how many instances to keep around when there are no requests. defaults to 0.
|
|
37
|
+
* Set to 1 for workers
|
|
38
|
+
*/
|
|
39
|
+
|
|
40
|
+
minInstances?: number;
|
|
41
|
+
/**
|
|
42
|
+
* maximum amount of instances. Defaults to 100
|
|
43
|
+
*/
|
|
44
|
+
|
|
45
|
+
maxInstances?: number;
|
|
46
|
+
/**
|
|
47
|
+
* set to true for workers
|
|
48
|
+
*/
|
|
49
|
+
|
|
50
|
+
noCpuThrottling?: true;
|
|
35
51
|
};
|
|
36
52
|
export declare type DeployConfigCloudRunJobBase = {
|
|
37
53
|
/**
|
|
@@ -81,6 +97,13 @@ export declare type DeployConfigCloudRun = {
|
|
|
81
97
|
*/
|
|
82
98
|
|
|
83
99
|
service?: boolean | DeployConfigCloudRunService;
|
|
100
|
+
/**
|
|
101
|
+
* deploy additional services with different entry pointss
|
|
102
|
+
*/
|
|
103
|
+
|
|
104
|
+
additionalServices?: {
|
|
105
|
+
[name: string]: DeployConfigCloudRunService;
|
|
106
|
+
};
|
|
84
107
|
jobs?: {
|
|
85
108
|
[name: string]: DeployConfigCloudRunJob | false | null;
|
|
86
109
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/@types/js-yaml/index.d.ts","../src/build/types.ts","../src/deploy/types/base.ts","../src/deploy/types/custom.ts","../src/deploy/types/dockerTag.ts","../src/deploy/types/googleCloudRun.ts","../src/deploy/types/kubernetes.ts","../src/deploy/types/index.ts","../src/types/gitlab-types.ts","../src/types/jobs.ts","../src/types/context.ts","../src/types/utils.ts","../src/types/config.ts","../src/types/pipeline.ts","../src/types/index.ts","../src/config/configruedEnvs.ts","../../node_modules/make-error/index.d.ts","../../node_modules/typescript/lib/typescript.d.ts","../../node_modules/ts-node/dist/ts-compiler-types.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/ts-node/dist/esm.d.ts","../../node_modules/ts-node/dist/repl.d.ts","../../node_modules/ts-node/dist/transpilers/types.d.ts","../../node_modules/ts-node/dist/index.d.ts","../src/config/readConfig.ts","../src/config/index.ts","../src/constants.ts","../src/rules/index.ts","../src/runner/index.ts","../../node_modules/@types/child-process-promise/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../src/utils/index.ts","../src/context/getEnvConfig.ts","../src/context/getEnvType.ts","../src/context/getEnvironmentContext.ts","../../node_modules/string-replace-async/index.d.ts","../src/context/resolveReferences.ts","../src/context/getEnvironmentVariables.ts","../src/context/getEnvironment.ts","../src/context/index.ts","../src/utils/gitlab.ts","../src/build/docker.ts","../../node_modules/slugify/slugify.d.ts","../src/context/getLabels.ts","../src/deploy/utils.ts","../src/deploy/base.ts","../src/deploy/cloudRun/utils/gcloudServiceAccountLoginCommands.ts","../src/deploy/cloudRun/utils/database.ts","../src/deploy/cloudRun/utils/jobName.ts","../src/deploy/cloudRun/deployJob.ts","../src/deploy/cloudRun/index.ts","../src/build/node/yarn.ts","../src/deploy/custom/deployJob.ts","../src/deploy/custom/index.ts","../src/deploy/dockerTag/deployJob.ts","../src/deploy/dockerTag/index.ts","../src/deploy/kubernetes/additionalSecretKeys.ts","../src/index.ts","../src/deploy/kubernetes/cloudSql/index.ts","../src/deploy/kubernetes/kubeEnv.ts","../src/deploy/kubernetes/mongodb.ts","../src/deploy/kubernetes/processSecretsAsFiles.ts","../src/deploy/kubernetes/kubeValues.ts","../src/deploy/kubernetes/deployJob.ts","../src/deploy/kubernetes/index.ts","../src/deploy/index.ts","../src/types/environmentContext.ts","../src/build/base/constants.ts","../src/build/base/getBuildInfo.ts","../src/build/base/createBuildJob.ts","../src/build/custom/buildJob.ts","../src/build/custom/index.ts","../src/build/node/cache.ts","../src/build/node/constants.ts","../src/build/node/buildJob.ts","../src/build/node/meteor.ts","../src/build/node/testJob.ts","../src/build/node/index.ts","../src/build/index.ts","../src/defaults/index.ts","../src/pipeline/gitlab/makeGitlabJob.ts","../../node_modules/path-equal/cjs/index.d.ts","../../node_modules/@types/memoizee/index.d.ts","../src/pipeline/packageManager.ts","../src/pipeline/createJobs.ts","../src/pipeline/createChildPipeline.ts","../src/pipeline/index.ts","../src/catladder-gitlab.ts","../src/build/tests/storybook.test.ts","../src/config/configruedEnvs.test.ts","../src/context/resolveReferences.test.ts","../src/pipeline/createChildPipeline.test.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/events/index.d.ts","../../node_modules/@types/keyv/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/responselike/index.d.ts","../../node_modules/@types/cacheable-request/index.d.ts","../../node_modules/@types/caseless/index.d.ts","../../node_modules/@types/common-tags/index.d.ts","../../node_modules/@types/fs-extra/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/jest-diff/build/cleanupSemantic.d.ts","../../node_modules/pretty-format/build/types.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/types.d.ts","../../node_modules/jest-diff/build/diffLines.d.ts","../../node_modules/jest-diff/build/printDiffs.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/minipass/index.d.ts","../../node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/request/node_modules/form-data/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/request/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/stream-buffers/index.d.ts","../../node_modules/@types/tar/index.d.ts","../../node_modules/@types/tmp/index.d.ts","../../node_modules/@types/underscore/index.d.ts","../../node_modules/@types/update-notifier/index.d.ts","../../node_modules/@types/vorpal/index.d.ts","../../node_modules/@types/websocket/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","baf48497fb5f03c8246f2bafb7f92adc100f0f10263750d95e5e7b70c89f8946","42b5f9bf467e872416c4c638cc9d0fe1b8e51f3af6ccb1b42c9113afdc55a98a","577a9b54a67c2d28eeffb6fe2f5471166e6be892c22dc042024b5746c2503e9b","e9d03fcd0507e24e819761559d0b33a9e7822d666d3f6fdcd38c9685022355d2","b98f6c1883c138f9c5f3c07d0e8617f4e344158bdb1270039bb2239bdb62fe65","8ebf160d9d5bcfc8c1e685da1877288328cb69853e22871718ba96dc9e8ec775","8c77aa8bec429f0d786f41276a53e798a577b7fbf68cc4636b3e05bda883631f","1c9089a25197455523b5ca717f6c6574c2d1582bb715597f6b510fc9a6a54804","970b5049f6a7006645691e7b7d584154bb73727c6480ccb13a1d3c07cce14ca4","06a4e3e3e2f2ebc0bbd41f24fb4a2aa90d018ccf7cf185b8de7d774fef74db42","ac3e69f46bac5eb2e36f8b64f68fc49fa6f6fb5a240b0cc65e05a645a855123a","d570dc3b80293282c718fb8733be1fd0870292c759eb6d83395e07129772b0dc","a1414a5c4be94bc7e21848d4b44657f8913eabd2cab80917e118e035df57fe80","3daf3efc5ede103e9f1e7a631a9de69f2071bdcbbe5499ab85b0bb711a2c8a73","3e7f98d7593ce75b74efe52ab1be812b0aec5eaad7f8c8c1bb31d392490843bb","2ced5214fb4159e282ccc5c84fa9eeac92a16ee70be4d2b0b099d460c765d72f","bbfbfa714a8f9fdf10e9483b4abd82ccb546fc0fc069ad80d0a254fa40930e98","bda269d949c17edff873e859935ae9a4942b6974585188097f32e91177a1573e","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"2a801b0322994c3dd7f0ef30265d19b3dd3bae6d793596879166ed6219c3da68","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","bcc8caf03ee65fe8610d258752f255fbdddbb2e4de7b6c5628956a5a0d859ec8","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"c28e5baab1b53377c90d12970e207a2644bc3627840066449e37e2a59125d07e","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"cfe724f7c694aab65a9bdd1acb05997848c504548c9d4c71645c187a091cfa2a","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7","1835259a20b9fa6b1882931375b69ae5978195f2b139b4e0db51ec8319261649","b52cd693219a63dd21282ac99a7bf55f77cbe8a91f097968856419cc2e05f017","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"0b3eba6dca8c6e534d16ef7b7d76cb546cd3cbab616c8f71daa0a151b5412b9e","55de1099a3da3def9bfc486788c52cd6d3b34e73b54a9e09662755f4dca5050c","c33d5f87a456706d805adfd2b540a573d46d50f93ac5b7dae1639553b9d202fd","e70f6d4a4cfaabb98d04725fa3c674c12eb8ea4b7745c14b0c67e67c1a677837",{"version":"03f47f16a6b2d34637464ca669445fc960c27eed667699748f556d7415438280","affectsGlobalScope":true},"7421172a0639d2d8682fefaf1f45e377e0f0300c2808a53c7c1e2921bbabbc91","f0063dcf66a19b8ccc5d601b76f7e746372414eb1ce0a47a39ae0043bbecbb60","1c70c3f15eb88da6c44d5b2f3d151a60bd076db0f7beb0654857cb50fa5e844a","7d385c35be79592c8d63a9c550ee7e0d1ee22ce6ed24a816cf91b2fb27657144","ce4d2a151c87ed977e25f31b95e4162d5c21c7e03f0346038e7acec463c7ceeb","41436cd5d8dfba4a428037dab82c50cca9f45f7135c8cc6f8a924c8c4fd60765","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","6702a1cd8818cb22ee95c85dcf2c31c117bde892e1afd2bc254bd720f4c6263c","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","7a79ca84e4370ed2e1afaa99ff7d25194901916b7672e977d16f77af3b71342f","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"f475f2d19e8bfd7c43121c906a95a9833fc2f13ba270fc29b780871e1ba7c359","6179a0533f767e9d862e0ef02631c09bb9200fd90f09eb09c73df247f3a9aeb1","408f9696c6db8a639565de38c1dd31c28f382de3a9d7b258cf5c13e22f0ab551","9cc93e000d00350200d33b26fed25a235a9debe3f99dc3c41bd0d15fb93095a0","820ca868b30b6248efd32081b724014646305aa4c39079ff62998537fbeee857","d8aba4368f2890b4e90f6b410ce95c195dd8fe45916f58a5d22df2b78105685a","62a487a0777ce529000c4cff35f69fee8f89b9879b15fc87d61ca996fb3c3123","e53bdbd3d24b371d7b75df4987223f3a0fb53e15ed8157bddbbcf947d38e7fa9","c374e1d8c8f29fb4b046d6eb991caa51ba190902a2be3c8ccfe9d0af9d2d8f1d","ee4f914c94c256ac1a62f98737bb2576827b77e55a0cc2577d8c643170486e72","0d5b39c70f37cfac7f9119048868641c5a7d4c06ca9b5ac022e0d26fc6bea320","2d526d2a2d6dfd1980fb6eaf7aa668c24d339e27b41cac2a72efc75abe301b35","8ec086ce563b695eb1f14493345c2fa90406f62f8b750e8428ee66c973c0c95e","5859bdff93629ef912888c94499f13e55b478797cbf42b2da0571f7caca7f137","315b97f9c5c34baf63b1b719fa85e52f428bc71decd9fe4df2d0f700279f84d2","3bf33946377673927af0003168f88ab2d02af9ac813fd60887bace1c1a2e1799","978b928960857e6e7e58ba5ce5fcc4fe6d51cc251c754ed49a9f5b039e5b7e75","3355d4d4fb2181e184a2e7440189926dd0064d29c1754ae176cda1821762bda0","eefee771a0a3feeea55d4013d56871020db0a29c3d872820b6b7bbf381c4ebac","e3a3081bade07ed7952e3861271663753fcd5dae1bdf3a01c6f3b62acf66656b","3b8d165d842f1b96cc754fba687e8b496dc0ae13abaa7e520585cd0e7bfe9af2","6aa7450034a3c20da34a4c4c62adfef6ccc114c9519381286b5947d4172cd12b","f2fe25599bbcb578cc19031e6d90af0452c5eaafec827b1c892840a68f6949f3","338e80ecff865bc9fc7db47000d1dd365fa3b913a40bc232bbee152e78bd1128","59119c8a627387a9c502f363177ad63cc5dd4aad04fa10900f999d52f8681e13","e259e7f8dd8660dd0fe188a2b924ba9a98c98e9581a2324866e513e869e5b1f6","f2df4ef5d0889f666d69ad9a4e61909c7e003fc89fe0380b7a2c1f62a7f39258","fead10d5d16623daf32ac4bb9b61682977aab5678929440aa79ce8f8f709a660","1dc4146835a84641fda666f3eea9d57eadf9af6340980c4df582b72339b86f6b","0b4fdbf2b5a07e1b59e7bb20aeefc7f870d1ef212b98ad0f64cd092bdde7f674","3c84042bb2a2ee87e926ba5e50ed5ec42a031637501acd8ca7cea217ac0ab740","6f7b1eda0f5772eff746f1bd372ea6105eaf4347aa6f62b4d3e2f17f89073524","e4180f44dc9ab590ffe4e19cccaea2db46d7b3dccff764ea395441f5634b0983","6c8396ca9c02c439bbf21378d42f434863c14f1224c88bb9e3dcae9bd4b0f37d","4834ded316730b9f6e5042ca6dd0ebaadb69ca9b687c1dd871757d444f3f2b6f","b29382b571e088f3b69022170a00d8eaaae8862508d09e4f7cfc29079ddd3a3b","ca73b3176a5a33b07f4f484844cf803dcf418b045eeb81495948d1d494ea67ed","76a50b61dc3dac722d0676f67de82aa943500c456bd6bdc58940cb28353eeac5","5c4a1e7fdb15fc6f48b53cf9e3257f9f063e382ec3b6e4f1a734ba57aca3b5ec","35d7f88b2452c82acd2c7e54eecd23942ceb2bc632a0156dcf1a107dbc878899","971e321bf44ede039b55dcacfe601fc52f5b9ff27e02ba785aee4245e1710b8a","fee9f051caf5734838c436cfbd1ccde66c4db8a6b9233cce4b97f8b829fd8182","b7f95d605462b878edcb8a58fdee2f1fcad915f3cd628abd02f702d4accc1ce0","b9236d5af4ce876caa3955b63e2c0ac66be374fc559f937539516fa61ce0b1df","d16370957bf17309084b91ce311f2af67052c08482084aa1977bfc59c161f1c7","c0a99a52b63c0416d2f121cd12e48eaa0c54f0e94989836fb22ea6066863eda0","7c02777fa9da27216953a9c62e83cc4394ac675352716689eeeb0047abbadc6a","da9f5e1e75ac3558eaa8c49854810dbe17f330ce5a23b6430baf1071d1f63e10","5473b6a4a6a6c6cc7b11c5cc8784d48f91f5be4111a29e5115e164651356d25d","3a2c6b5dc32e709986cd9d6cd7c75ca7fe5ecde685cc54c958c8bd86bca5886f","e4ac388c3f3ab98b646fbbbf030799bb47ded363d5dc745494a13930e7611eb0","34ef06f1d5e0ae95afb816e93c40f04f93641c11ad06e54b6fbe9335c3238c03","274462052d63ee44304c9cc81bdc24250d789c4178f9b93b7f0c79ea44bfc5f0","d9e0fc6b390e7c05cb603cc3ea5793c9f52ac602c8d141451e2dcd0086b8651a","9f39a75d870de6ba961641f25ff67b850fe2c7b58cb76a07cced3bf92db5ff58","441bd4492e213881e831327b61c5c6a3c8727b1a36a024ea8a70a9e092050894","9f26716f7a91d23ab715fc2f09b042dea9fb08c51f3ad5f577182413935b198c","26792291b2cb8ae1afa67e9af714f22962eb5574a6579843f3028881cef520aa","c5a6796e5f0d41acb873c0bd09fada39e07c5fa09e09c8c21732858ed61e1bc3","beb05bd3a87f11b0fcc635b4ed50a8c138eaa4bb207fb9ad9705c251f6126d3e","02919b4cee93bde1874f878e1b571c86165774a6a35decf9ef75d03b4b9c65a4","d5d7b68f5369a210c235cd65458369888f8b839192d088c964f21cab3ac954db","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","64b867c61effed7b5bc0cc06b3d8eac23b067a3fba581fc7d3c292fa593e6a45","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","80164ffebe1723a50e020a648e0623c026ff39be13c5cd45e6a82d0fcc06e2d0","400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935","fec943fdb3275eb6e006b35e04a8e2e99e9adf3f4b969ddf15315ac7575a93e4","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","5343f3c160282dfbaab9af350119a0c3b59b7076ef0117bb5995a66e240dab28","c5590caef278ad8ba2532ec93e29a32ac354dfb333277348acce18512891d3b2","aca36e2d27783f4bad7fc1786a532ff76024f0fc8575df48bcd9a5eb452fe7e7","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190",{"version":"6ff2ca51e2c9d88d6d904c481879b12ec0cad2a69b88e220859a52207444773b","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","fbdb2f9a17acdb6de71dd363fd0d8b79b823ac8fbf2423558871ddea14333682","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","e91ad231af87f864b3f07cd0e39b1cf6c133988156f087c1c3ccb0a5491c9115","660fa40695c7ca19a59fd09d31d495d952eee946e445a2c455ec63f255ec3050","bf0b1297461549a0e32cd57dffb992c63d7c7134fe0f9e15d359abcc88dbd28c","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","229b8c23448b98db8507667e46f54d20bd1e8425eaa8f3093bf9fecfbab862ec","239f0c1d83d1ca9677327198196ee2ce6827dc7b469771ab5abf7bea7fbdb674","6061aa83817c30d3a590f037b3cba22cdd809fbe697926d6511b45147928a342",{"version":"0609dda5350cd6d8c42daef710dffe3b51521ffbd00109e234f7bfb7533194e7","affectsGlobalScope":true},"f4d98f30a512c76f6de4c7ed21ccab0f544d60a612af0e0b0a65ccbe16784b7a","6ffffca02d7bdb0ee802d75b5f4de8270a0c1e1164873db8e76dc5d518dcd150","6e40a3a87126255d4c1aa4d613923b6e3c5c28273d018a8591af338232f393ab","829c6dfd3224be3b599c64ce7fa9136a3422ac7ab4569cc52469c65574facb23","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","d9f5e2cb6bce0d05a252e991b33e051f6385299b0dd18d842fc863b59173a18e"],"options":{"declaration":true,"downlevelIteration":true,"esModuleInterop":true,"module":1,"outDir":"./","strict":true},"fileIdsList":[[102,194],[102],[102,194,195,196,197,198],[102,194,196],[74,77,101,102,109,201,202,203],[64,102,109],[75,102,109],[102,209],[102,210],[102,214,218],[74,102,109],[102,120,122,123,124,125,126,127,128,129,130,131,132],[102,120,121,123,124,125,126,127,128,129,130,131,132],[102,121,122,123,124,125,126,127,128,129,130,131,132],[102,120,121,122,124,125,126,127,128,129,130,131,132],[102,120,121,122,123,125,126,127,128,129,130,131,132],[102,120,121,122,123,124,126,127,128,129,130,131,132],[102,120,121,122,123,124,125,127,128,129,130,131,132],[102,120,121,122,123,124,125,126,128,129,130,131,132],[102,120,121,122,123,124,125,126,127,129,130,131,132],[102,120,121,122,123,124,125,126,127,128,130,131,132],[102,120,121,122,123,124,125,126,127,128,129,131,132],[102,120,121,122,123,124,125,126,127,128,129,130,132],[102,120,121,122,123,124,125,126,127,128,129,130,131],[77,101,102,109,222,223],[59,102],[62,102],[63,68,102],[64,74,75,82,91,101,102],[64,65,74,82,102],[66,102],[67,68,75,83,102],[68,91,98,102],[69,71,74,82,102],[70,102],[71,72,102],[73,74,102],[74,102],[74,75,76,91,101,102],[74,75,76,91,102],[77,82,91,101,102],[74,75,77,78,82,91,98,101,102],[77,79,91,98,101,102],[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],[74,80,102],[81,101,102],[71,74,82,91,102],[83,102],[84,102],[62,85,102],[86,100,102,106],[87,102],[88,102],[74,89,102],[89,90,102,104],[74,91,92,93,102],[91,93,102],[91,92,102],[94,102],[95,102],[74,96,97,102],[96,97,102],[68,82,91,98,102],[99,102],[82,100,102],[63,77,88,101,102],[68,102],[91,102,103],[102,104],[102,105],[63,68,74,76,85,91,101,102,104,106],[91,102,107],[75,77,79,82,91,101,102,109,205,226,227],[77,91,102,109],[91,102,109],[74,91,102,107,109,221],[74,77,79,82,101,102,109],[74,77,79,82,101,102,107,109],[102,238],[102,212,215],[102,212,215,216,217],[102,214],[102,213],[102,109,113],[56,57,58,102,110,111,112],[57,102,113],[57,102],[49,84,102,132,133,153,159,169,170],[54,102],[41,49,50,84,102,133,143,169,171],[49,50,102,172],[49,54,102,118,132,167],[41,49,50,102,168,173,179],[41,49,50,84,102,133,143,153,169,171,174,175],[48,50,84,102],[49,50,102,176,177,178],[41,49,50,54,84,102,118,143,153,169,171,174],[49,50,102,118,133,153,174,175],[54,102,159],[40,54,75,102,115,116,188],[54,102,115,159],[55,102,114],[40,54,75,102,113],[52,102,133],[50,52,102,136,139],[50,52,102,134,135,168],[52,54,102,132,136,138,167],[54,102,144],[41,47,50,51,52,102,133,136,139,140,167,180],[102,138],[102,132,137],[47,49,54,102,143,146],[40,47,49,50,102,118,132,142,143,145,147,148,149,150,152],[102,141,142,150,151,167,168],[47,54,102,142],[54,102,141,152],[47,49,50,102,132,147,153],[102,154,167],[47,49,50,102,132,143,147],[102,156,167],[47,49,50,51,102,146,152,155,157,166,168],[102,168],[47,54,102,141],[40,47,49,50,102,118,132,147,159,164],[102,144,158,160,165,167],[47,54,102],[47,50,102,132,133,160,161,162,163],[102,132,159],[47,102,132],[42,102],[43,44,45,46,102],[54,102,115,117,118,141,167,180,188],[54,102,187],[49,52,54,102,115,117,118,186],[49,50,52,54,102,119,132,133,141,167,180,182,185],[49,54,102,181],[102,186,187],[54,75,84,102,119,183,184],[102,116],[41,47,49,50,51,102],[52,102],[50,52,102,167,180],[48,50,52,53,102],[48,102],[102,132]],"referencedMap":[[196,1],[194,2],[199,3],[195,1],[197,4],[198,1],[204,5],[205,2],[119,6],[206,2],[200,2],[207,7],[208,7],[202,2],[209,2],[210,8],[211,9],[219,10],[40,2],[220,2],[201,11],[121,12],[122,13],[120,14],[123,15],[124,16],[125,17],[126,18],[127,19],[128,20],[129,21],[130,22],[131,23],[132,24],[184,2],[221,11],[223,2],[224,25],[59,26],[60,26],[62,27],[63,28],[64,29],[65,30],[66,31],[67,32],[68,33],[69,34],[70,35],[71,36],[72,36],[73,37],[74,38],[75,39],[76,40],[61,2],[108,2],[77,41],[78,42],[79,43],[109,44],[80,45],[81,46],[82,47],[83,48],[84,49],[85,50],[86,51],[87,52],[88,53],[89,54],[90,55],[91,56],[93,57],[92,58],[94,59],[95,60],[96,61],[97,62],[98,63],[99,64],[100,65],[101,66],[102,67],[103,68],[104,69],[105,70],[106,71],[107,72],[225,2],[228,73],[226,74],[203,74],[229,2],[230,75],[231,76],[232,2],[227,2],[233,2],[234,2],[235,2],[236,77],[237,78],[238,2],[239,79],[222,74],[212,2],[216,80],[218,81],[217,80],[215,82],[56,2],[183,2],[214,83],[213,2],[144,2],[137,2],[110,84],[113,85],[111,84],[112,86],[58,87],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[38,2],[34,2],[35,2],[36,2],[37,2],[1,2],[39,2],[57,2],[169,2],[171,88],[170,89],[172,90],[173,91],[143,92],[180,93],[176,94],[174,95],[175,2],[179,96],[177,97],[178,98],[153,89],[190,99],[41,89],[189,100],[191,101],[55,89],[115,102],[114,103],[116,2],[134,104],[135,89],[140,105],[136,106],[139,107],[145,108],[141,109],[192,110],[138,111],[181,89],[147,112],[151,113],[152,114],[149,115],[148,116],[150,2],[154,117],[155,118],[156,119],[157,120],[167,121],[158,122],[160,123],[165,124],[166,125],[161,126],[164,127],[162,128],[163,129],[42,2],[43,130],[44,130],[45,130],[47,131],[46,130],[146,126],[159,132],[193,133],[187,134],[186,135],[182,136],[188,137],[185,138],[117,89],[118,139],[52,140],[50,141],[168,142],[48,2],[54,143],[49,144],[53,144],[51,2],[142,2],[133,145]],"exportedModulesMap":[[196,1],[194,2],[199,3],[195,1],[197,4],[198,1],[204,5],[205,2],[119,6],[206,2],[200,2],[207,7],[208,7],[202,2],[209,2],[210,8],[211,9],[219,10],[40,2],[220,2],[201,11],[121,12],[122,13],[120,14],[123,15],[124,16],[125,17],[126,18],[127,19],[128,20],[129,21],[130,22],[131,23],[132,24],[184,2],[221,11],[223,2],[224,25],[59,26],[60,26],[62,27],[63,28],[64,29],[65,30],[66,31],[67,32],[68,33],[69,34],[70,35],[71,36],[72,36],[73,37],[74,38],[75,39],[76,40],[61,2],[108,2],[77,41],[78,42],[79,43],[109,44],[80,45],[81,46],[82,47],[83,48],[84,49],[85,50],[86,51],[87,52],[88,53],[89,54],[90,55],[91,56],[93,57],[92,58],[94,59],[95,60],[96,61],[97,62],[98,63],[99,64],[100,65],[101,66],[102,67],[103,68],[104,69],[105,70],[106,71],[107,72],[225,2],[228,73],[226,74],[203,74],[229,2],[230,75],[231,76],[232,2],[227,2],[233,2],[234,2],[235,2],[236,77],[237,78],[238,2],[239,79],[222,74],[212,2],[216,80],[218,81],[217,80],[215,82],[56,2],[183,2],[214,83],[213,2],[144,2],[137,2],[110,84],[113,85],[111,84],[112,86],[58,87],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[38,2],[34,2],[35,2],[36,2],[37,2],[1,2],[39,2],[57,2],[169,2],[171,88],[170,89],[172,90],[173,91],[143,92],[180,93],[176,94],[174,95],[175,2],[179,96],[177,97],[178,98],[153,89],[190,99],[41,89],[189,100],[191,101],[55,89],[115,102],[114,103],[116,2],[134,104],[135,89],[140,105],[136,106],[139,107],[145,108],[141,109],[192,110],[138,111],[181,89],[147,112],[151,113],[152,114],[149,115],[148,116],[150,2],[154,117],[155,118],[156,119],[157,120],[167,121],[158,122],[160,123],[165,124],[166,125],[161,126],[164,127],[162,128],[163,129],[42,2],[43,130],[44,130],[45,130],[47,131],[46,130],[146,126],[159,132],[193,133],[187,134],[186,135],[182,136],[188,137],[185,138],[117,89],[118,139],[52,140],[50,141],[168,142],[48,2],[54,143],[49,144],[53,144],[51,2],[142,2],[133,145]],"semanticDiagnosticsPerFile":[196,194,199,195,197,198,204,205,119,206,200,207,208,202,209,210,211,219,40,220,201,121,122,120,123,124,125,126,127,128,129,130,131,132,184,221,223,224,59,60,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,61,108,77,78,79,109,80,81,82,83,84,85,86,87,88,89,90,91,93,92,94,95,96,97,98,99,100,101,102,103,104,105,106,107,225,228,226,203,229,230,231,232,227,233,234,235,236,237,238,239,222,212,216,218,217,215,56,183,214,213,144,137,110,113,111,112,58,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,38,34,35,36,37,1,39,57,169,171,170,172,173,143,180,176,174,175,179,177,178,153,190,41,189,191,55,115,114,116,134,135,140,136,139,145,141,192,138,181,147,151,152,149,148,150,154,155,156,157,167,158,160,165,166,161,164,162,163,42,43,44,45,47,46,146,159,193,187,186,182,188,185,117,118,52,50,168,48,54,49,53,51,142,133]},"version":"4.5.4"}
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/@types/js-yaml/index.d.ts","../src/build/types.ts","../src/deploy/types/base.ts","../src/deploy/types/custom.ts","../src/deploy/types/dockerTag.ts","../src/deploy/types/googleCloudRun.ts","../src/deploy/types/kubernetes.ts","../src/deploy/types/index.ts","../src/types/gitlab-types.ts","../src/types/jobs.ts","../src/types/context.ts","../src/types/utils.ts","../src/types/config.ts","../src/types/pipeline.ts","../src/types/index.ts","../src/config/configruedEnvs.ts","../../node_modules/make-error/index.d.ts","../../node_modules/typescript/lib/typescript.d.ts","../../node_modules/ts-node/dist/ts-compiler-types.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/ts-node/dist/esm.d.ts","../../node_modules/ts-node/dist/repl.d.ts","../../node_modules/ts-node/dist/transpilers/types.d.ts","../../node_modules/ts-node/dist/index.d.ts","../src/config/readConfig.ts","../src/config/index.ts","../src/constants.ts","../src/rules/index.ts","../src/runner/index.ts","../../node_modules/@types/child-process-promise/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../src/utils/index.ts","../src/context/getEnvConfig.ts","../src/context/getEnvType.ts","../src/context/getEnvironmentContext.ts","../../node_modules/string-replace-async/index.d.ts","../src/context/resolveReferences.ts","../src/context/getEnvironmentVariables.ts","../src/context/getEnvironment.ts","../src/context/index.ts","../src/utils/gitlab.ts","../src/build/docker.ts","../../node_modules/slugify/slugify.d.ts","../src/context/getLabels.ts","../src/deploy/utils.ts","../src/deploy/base.ts","../src/deploy/cloudRun/utils/gcloudServiceAccountLoginCommands.ts","../src/deploy/cloudRun/utils/database.ts","../src/deploy/cloudRun/utils/jobName.ts","../src/deploy/cloudRun/deployJob.ts","../src/deploy/cloudRun/index.ts","../src/build/node/yarn.ts","../src/deploy/custom/deployJob.ts","../src/deploy/custom/index.ts","../src/deploy/dockerTag/deployJob.ts","../src/deploy/dockerTag/index.ts","../src/deploy/kubernetes/additionalSecretKeys.ts","../src/index.ts","../src/deploy/kubernetes/cloudSql/index.ts","../src/deploy/kubernetes/kubeEnv.ts","../src/deploy/kubernetes/mongodb.ts","../src/deploy/kubernetes/processSecretsAsFiles.ts","../src/deploy/kubernetes/kubeValues.ts","../src/deploy/kubernetes/deployJob.ts","../src/deploy/kubernetes/index.ts","../src/deploy/index.ts","../src/types/environmentContext.ts","../src/build/base/constants.ts","../src/build/base/getBuildInfo.ts","../src/build/base/createBuildJob.ts","../src/build/custom/buildJob.ts","../src/build/custom/index.ts","../src/build/node/cache.ts","../src/build/node/constants.ts","../src/build/node/buildJob.ts","../src/build/node/meteor.ts","../src/build/node/testJob.ts","../src/build/node/index.ts","../src/build/rails/build.ts","../src/build/rails/test.ts","../src/build/rails/index.ts","../src/build/index.ts","../src/defaults/index.ts","../src/pipeline/gitlab/makeGitlabJob.ts","../../node_modules/path-equal/cjs/index.d.ts","../../node_modules/@types/memoizee/index.d.ts","../src/pipeline/packageManager.ts","../src/pipeline/createJobs.ts","../src/pipeline/createChildPipeline.ts","../src/pipeline/index.ts","../src/catladder-gitlab.ts","../src/build/tests/storybook.test.ts","../src/config/configruedEnvs.test.ts","../src/context/resolveReferences.test.ts","../src/pipeline/createChildPipeline.test.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/events/index.d.ts","../../node_modules/@types/keyv/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/responselike/index.d.ts","../../node_modules/@types/cacheable-request/index.d.ts","../../node_modules/@types/caseless/index.d.ts","../../node_modules/@types/common-tags/index.d.ts","../../node_modules/@types/fs-extra/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/jest-diff/build/cleanupSemantic.d.ts","../../node_modules/pretty-format/build/types.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/types.d.ts","../../node_modules/jest-diff/build/diffLines.d.ts","../../node_modules/jest-diff/build/printDiffs.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/minipass/index.d.ts","../../node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/request/node_modules/form-data/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/request/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/stream-buffers/index.d.ts","../../node_modules/@types/tar/index.d.ts","../../node_modules/@types/tmp/index.d.ts","../../node_modules/@types/underscore/index.d.ts","../../node_modules/@types/update-notifier/index.d.ts","../../node_modules/@types/vorpal/index.d.ts","../../node_modules/@types/websocket/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","3220fe5a461a2429d17353e99b2ea346035a31d5a177e28cf4862345c63a5c63","42b5f9bf467e872416c4c638cc9d0fe1b8e51f3af6ccb1b42c9113afdc55a98a","577a9b54a67c2d28eeffb6fe2f5471166e6be892c22dc042024b5746c2503e9b","e9d03fcd0507e24e819761559d0b33a9e7822d666d3f6fdcd38c9685022355d2","c71372564821382508859cae6f3b183c9c777cb883ca9def776994879aa974bd","8ebf160d9d5bcfc8c1e685da1877288328cb69853e22871718ba96dc9e8ec775","8c77aa8bec429f0d786f41276a53e798a577b7fbf68cc4636b3e05bda883631f","9e1b82f185e087dabf0d3f1e183cf4a94070c3b50691e70347a6a4e940d6b084","970b5049f6a7006645691e7b7d584154bb73727c6480ccb13a1d3c07cce14ca4","06a4e3e3e2f2ebc0bbd41f24fb4a2aa90d018ccf7cf185b8de7d774fef74db42","ac3e69f46bac5eb2e36f8b64f68fc49fa6f6fb5a240b0cc65e05a645a855123a","d570dc3b80293282c718fb8733be1fd0870292c759eb6d83395e07129772b0dc","a1414a5c4be94bc7e21848d4b44657f8913eabd2cab80917e118e035df57fe80","3daf3efc5ede103e9f1e7a631a9de69f2071bdcbbe5499ab85b0bb711a2c8a73","3e7f98d7593ce75b74efe52ab1be812b0aec5eaad7f8c8c1bb31d392490843bb","2ced5214fb4159e282ccc5c84fa9eeac92a16ee70be4d2b0b099d460c765d72f","bbfbfa714a8f9fdf10e9483b4abd82ccb546fc0fc069ad80d0a254fa40930e98","bda269d949c17edff873e859935ae9a4942b6974585188097f32e91177a1573e","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"2a801b0322994c3dd7f0ef30265d19b3dd3bae6d793596879166ed6219c3da68","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","bcc8caf03ee65fe8610d258752f255fbdddbb2e4de7b6c5628956a5a0d859ec8","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"c28e5baab1b53377c90d12970e207a2644bc3627840066449e37e2a59125d07e","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"cfe724f7c694aab65a9bdd1acb05997848c504548c9d4c71645c187a091cfa2a","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7","1835259a20b9fa6b1882931375b69ae5978195f2b139b4e0db51ec8319261649","b52cd693219a63dd21282ac99a7bf55f77cbe8a91f097968856419cc2e05f017","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"0b3eba6dca8c6e534d16ef7b7d76cb546cd3cbab616c8f71daa0a151b5412b9e","55de1099a3da3def9bfc486788c52cd6d3b34e73b54a9e09662755f4dca5050c","c33d5f87a456706d805adfd2b540a573d46d50f93ac5b7dae1639553b9d202fd","e70f6d4a4cfaabb98d04725fa3c674c12eb8ea4b7745c14b0c67e67c1a677837",{"version":"03f47f16a6b2d34637464ca669445fc960c27eed667699748f556d7415438280","affectsGlobalScope":true},"7421172a0639d2d8682fefaf1f45e377e0f0300c2808a53c7c1e2921bbabbc91","f0063dcf66a19b8ccc5d601b76f7e746372414eb1ce0a47a39ae0043bbecbb60","1c70c3f15eb88da6c44d5b2f3d151a60bd076db0f7beb0654857cb50fa5e844a","7d385c35be79592c8d63a9c550ee7e0d1ee22ce6ed24a816cf91b2fb27657144","ce4d2a151c87ed977e25f31b95e4162d5c21c7e03f0346038e7acec463c7ceeb","41436cd5d8dfba4a428037dab82c50cca9f45f7135c8cc6f8a924c8c4fd60765","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","6702a1cd8818cb22ee95c85dcf2c31c117bde892e1afd2bc254bd720f4c6263c","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","7a79ca84e4370ed2e1afaa99ff7d25194901916b7672e977d16f77af3b71342f","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"f475f2d19e8bfd7c43121c906a95a9833fc2f13ba270fc29b780871e1ba7c359","6179a0533f767e9d862e0ef02631c09bb9200fd90f09eb09c73df247f3a9aeb1","408f9696c6db8a639565de38c1dd31c28f382de3a9d7b258cf5c13e22f0ab551","9cc93e000d00350200d33b26fed25a235a9debe3f99dc3c41bd0d15fb93095a0","820ca868b30b6248efd32081b724014646305aa4c39079ff62998537fbeee857","d8aba4368f2890b4e90f6b410ce95c195dd8fe45916f58a5d22df2b78105685a","61617bb950bba57f48c5603188229517068310affe3b22277118a01ba2891fc6","e53bdbd3d24b371d7b75df4987223f3a0fb53e15ed8157bddbbcf947d38e7fa9","c374e1d8c8f29fb4b046d6eb991caa51ba190902a2be3c8ccfe9d0af9d2d8f1d","ee4f914c94c256ac1a62f98737bb2576827b77e55a0cc2577d8c643170486e72","0d5b39c70f37cfac7f9119048868641c5a7d4c06ca9b5ac022e0d26fc6bea320","2d526d2a2d6dfd1980fb6eaf7aa668c24d339e27b41cac2a72efc75abe301b35","8ec086ce563b695eb1f14493345c2fa90406f62f8b750e8428ee66c973c0c95e","5859bdff93629ef912888c94499f13e55b478797cbf42b2da0571f7caca7f137","315b97f9c5c34baf63b1b719fa85e52f428bc71decd9fe4df2d0f700279f84d2","3bf33946377673927af0003168f88ab2d02af9ac813fd60887bace1c1a2e1799","978b928960857e6e7e58ba5ce5fcc4fe6d51cc251c754ed49a9f5b039e5b7e75","3355d4d4fb2181e184a2e7440189926dd0064d29c1754ae176cda1821762bda0","b350852e3971b51eefbfcf9ba115c24b3b1d1b74138034caf035db7a82a8a9d9","e3a3081bade07ed7952e3861271663753fcd5dae1bdf3a01c6f3b62acf66656b","3b8d165d842f1b96cc754fba687e8b496dc0ae13abaa7e520585cd0e7bfe9af2","6aa7450034a3c20da34a4c4c62adfef6ccc114c9519381286b5947d4172cd12b","f2fe25599bbcb578cc19031e6d90af0452c5eaafec827b1c892840a68f6949f3","338e80ecff865bc9fc7db47000d1dd365fa3b913a40bc232bbee152e78bd1128","59119c8a627387a9c502f363177ad63cc5dd4aad04fa10900f999d52f8681e13","e259e7f8dd8660dd0fe188a2b924ba9a98c98e9581a2324866e513e869e5b1f6","f2df4ef5d0889f666d69ad9a4e61909c7e003fc89fe0380b7a2c1f62a7f39258","fead10d5d16623daf32ac4bb9b61682977aab5678929440aa79ce8f8f709a660","1dc4146835a84641fda666f3eea9d57eadf9af6340980c4df582b72339b86f6b","0b4fdbf2b5a07e1b59e7bb20aeefc7f870d1ef212b98ad0f64cd092bdde7f674","3c84042bb2a2ee87e926ba5e50ed5ec42a031637501acd8ca7cea217ac0ab740","6f7b1eda0f5772eff746f1bd372ea6105eaf4347aa6f62b4d3e2f17f89073524","e4180f44dc9ab590ffe4e19cccaea2db46d7b3dccff764ea395441f5634b0983","6c8396ca9c02c439bbf21378d42f434863c14f1224c88bb9e3dcae9bd4b0f37d","4834ded316730b9f6e5042ca6dd0ebaadb69ca9b687c1dd871757d444f3f2b6f","b29382b571e088f3b69022170a00d8eaaae8862508d09e4f7cfc29079ddd3a3b","ca73b3176a5a33b07f4f484844cf803dcf418b045eeb81495948d1d494ea67ed","76a50b61dc3dac722d0676f67de82aa943500c456bd6bdc58940cb28353eeac5","5c4a1e7fdb15fc6f48b53cf9e3257f9f063e382ec3b6e4f1a734ba57aca3b5ec","35d7f88b2452c82acd2c7e54eecd23942ceb2bc632a0156dcf1a107dbc878899","971e321bf44ede039b55dcacfe601fc52f5b9ff27e02ba785aee4245e1710b8a","fee9f051caf5734838c436cfbd1ccde66c4db8a6b9233cce4b97f8b829fd8182","b7f95d605462b878edcb8a58fdee2f1fcad915f3cd628abd02f702d4accc1ce0","b9236d5af4ce876caa3955b63e2c0ac66be374fc559f937539516fa61ce0b1df","d16370957bf17309084b91ce311f2af67052c08482084aa1977bfc59c161f1c7","c0a99a52b63c0416d2f121cd12e48eaa0c54f0e94989836fb22ea6066863eda0","7c02777fa9da27216953a9c62e83cc4394ac675352716689eeeb0047abbadc6a","937f0c3d695aa067837fdfdb5d92561c592109f504a6ca544a6ab63271138a8f","f697cc9975a0d8e66e059aa8f0eb6b9c780c8e4eb2e9b900af8ec86e1b22cbb2","57e03df830c33cbb479244da6edc0b575bd51d9dc0b2d897261e5e742a9ed7f7","723ef308f38c8fbffa13dfcf3f6501d3d26c9a4872bd71c5b5b14aa2d17cfab0","5473b6a4a6a6c6cc7b11c5cc8784d48f91f5be4111a29e5115e164651356d25d","3a2c6b5dc32e709986cd9d6cd7c75ca7fe5ecde685cc54c958c8bd86bca5886f","e4ac388c3f3ab98b646fbbbf030799bb47ded363d5dc745494a13930e7611eb0","34ef06f1d5e0ae95afb816e93c40f04f93641c11ad06e54b6fbe9335c3238c03","274462052d63ee44304c9cc81bdc24250d789c4178f9b93b7f0c79ea44bfc5f0","d9e0fc6b390e7c05cb603cc3ea5793c9f52ac602c8d141451e2dcd0086b8651a","9f39a75d870de6ba961641f25ff67b850fe2c7b58cb76a07cced3bf92db5ff58","441bd4492e213881e831327b61c5c6a3c8727b1a36a024ea8a70a9e092050894","9f26716f7a91d23ab715fc2f09b042dea9fb08c51f3ad5f577182413935b198c","26792291b2cb8ae1afa67e9af714f22962eb5574a6579843f3028881cef520aa","c5a6796e5f0d41acb873c0bd09fada39e07c5fa09e09c8c21732858ed61e1bc3","beb05bd3a87f11b0fcc635b4ed50a8c138eaa4bb207fb9ad9705c251f6126d3e","02919b4cee93bde1874f878e1b571c86165774a6a35decf9ef75d03b4b9c65a4","d5d7b68f5369a210c235cd65458369888f8b839192d088c964f21cab3ac954db","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","64b867c61effed7b5bc0cc06b3d8eac23b067a3fba581fc7d3c292fa593e6a45","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","80164ffebe1723a50e020a648e0623c026ff39be13c5cd45e6a82d0fcc06e2d0","400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935","fec943fdb3275eb6e006b35e04a8e2e99e9adf3f4b969ddf15315ac7575a93e4","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","5343f3c160282dfbaab9af350119a0c3b59b7076ef0117bb5995a66e240dab28","c5590caef278ad8ba2532ec93e29a32ac354dfb333277348acce18512891d3b2","aca36e2d27783f4bad7fc1786a532ff76024f0fc8575df48bcd9a5eb452fe7e7","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190",{"version":"6ff2ca51e2c9d88d6d904c481879b12ec0cad2a69b88e220859a52207444773b","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","fbdb2f9a17acdb6de71dd363fd0d8b79b823ac8fbf2423558871ddea14333682","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","e91ad231af87f864b3f07cd0e39b1cf6c133988156f087c1c3ccb0a5491c9115","660fa40695c7ca19a59fd09d31d495d952eee946e445a2c455ec63f255ec3050","bf0b1297461549a0e32cd57dffb992c63d7c7134fe0f9e15d359abcc88dbd28c","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","229b8c23448b98db8507667e46f54d20bd1e8425eaa8f3093bf9fecfbab862ec","239f0c1d83d1ca9677327198196ee2ce6827dc7b469771ab5abf7bea7fbdb674","6061aa83817c30d3a590f037b3cba22cdd809fbe697926d6511b45147928a342",{"version":"0609dda5350cd6d8c42daef710dffe3b51521ffbd00109e234f7bfb7533194e7","affectsGlobalScope":true},"f4d98f30a512c76f6de4c7ed21ccab0f544d60a612af0e0b0a65ccbe16784b7a","6ffffca02d7bdb0ee802d75b5f4de8270a0c1e1164873db8e76dc5d518dcd150","6e40a3a87126255d4c1aa4d613923b6e3c5c28273d018a8591af338232f393ab","829c6dfd3224be3b599c64ce7fa9136a3422ac7ab4569cc52469c65574facb23","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","d9f5e2cb6bce0d05a252e991b33e051f6385299b0dd18d842fc863b59173a18e"],"options":{"declaration":true,"downlevelIteration":true,"esModuleInterop":true,"module":1,"outDir":"./","strict":true},"fileIdsList":[[102,197],[102],[102,197,198,199,200,201],[102,197,199],[74,77,101,102,109,204,205,206],[64,102,109],[75,102,109],[102,212],[102,213],[102,217,221],[74,102,109],[102,120,122,123,124,125,126,127,128,129,130,131,132],[102,120,121,123,124,125,126,127,128,129,130,131,132],[102,121,122,123,124,125,126,127,128,129,130,131,132],[102,120,121,122,124,125,126,127,128,129,130,131,132],[102,120,121,122,123,125,126,127,128,129,130,131,132],[102,120,121,122,123,124,126,127,128,129,130,131,132],[102,120,121,122,123,124,125,127,128,129,130,131,132],[102,120,121,122,123,124,125,126,128,129,130,131,132],[102,120,121,122,123,124,125,126,127,129,130,131,132],[102,120,121,122,123,124,125,126,127,128,130,131,132],[102,120,121,122,123,124,125,126,127,128,129,131,132],[102,120,121,122,123,124,125,126,127,128,129,130,132],[102,120,121,122,123,124,125,126,127,128,129,130,131],[77,101,102,109,225,226],[59,102],[62,102],[63,68,102],[64,74,75,82,91,101,102],[64,65,74,82,102],[66,102],[67,68,75,83,102],[68,91,98,102],[69,71,74,82,102],[70,102],[71,72,102],[73,74,102],[74,102],[74,75,76,91,101,102],[74,75,76,91,102],[77,82,91,101,102],[74,75,77,78,82,91,98,101,102],[77,79,91,98,101,102],[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],[74,80,102],[81,101,102],[71,74,82,91,102],[83,102],[84,102],[62,85,102],[86,100,102,106],[87,102],[88,102],[74,89,102],[89,90,102,104],[74,91,92,93,102],[91,93,102],[91,92,102],[94,102],[95,102],[74,96,97,102],[96,97,102],[68,82,91,98,102],[99,102],[82,100,102],[63,77,88,101,102],[68,102],[91,102,103],[102,104],[102,105],[63,68,74,76,85,91,101,102,104,106],[91,102,107],[75,77,79,82,91,101,102,109,208,229,230],[77,91,102,109],[91,102,109],[74,91,102,107,109,224],[74,77,79,82,101,102,109],[74,77,79,82,101,102,107,109],[102,241],[102,215,218],[102,215,218,219,220],[102,217],[102,216],[102,109,113],[56,57,58,102,110,111,112],[57,102,113],[57,102],[49,84,102,132,133,153,159,169,170],[54,102],[41,49,50,84,102,133,143,169,171],[49,50,102,172],[49,54,102,118,132,167],[41,49,50,102,168,173,179,182],[41,49,50,84,102,133,143,153,169,171,174,175],[48,50,84,102],[49,50,102,176,177,178],[41,49,50,54,84,102,118,143,153,169,171,174],[49,50,102,118,133,153,174,175],[49,102,143,159],[49,54,102,180,181],[49,102,133,159],[54,102,159],[40,54,75,102,115,116,191],[54,102,115,159],[55,102,114],[40,54,75,102,113],[52,102,133],[50,52,102,136,139],[50,52,102,134,135,168],[52,54,102,132,136,138,167],[54,102,144],[41,47,50,51,52,102,133,136,139,140,167,183],[102,138],[102,132,137],[47,49,54,102,143,146],[40,47,49,50,102,118,132,142,143,145,147,148,149,150,152],[102,141,142,150,151,167,168],[47,54,102,142],[54,102,141,152],[47,49,50,102,132,147,153],[102,154,167],[47,49,50,102,132,143,147],[102,156,167],[47,49,50,51,102,146,152,155,157,166,168],[102,168],[47,54,102,141],[40,47,49,50,102,118,132,147,159,164],[102,144,158,160,165,167],[47,54,102],[47,50,102,132,133,160,161,162,163],[102,132,159],[47,102,132],[42,102],[43,44,45,46,102],[54,102,115,117,118,141,167,183,191],[54,102,190],[49,52,54,102,115,117,118,189],[49,50,52,54,102,119,132,133,141,167,183,185,188],[49,54,102,184],[102,189,190],[54,75,84,102,119,186,187],[102,116],[41,47,49,50,51,102],[52,102],[50,52,102,167,183],[48,50,52,53,102],[48,102],[102,132]],"referencedMap":[[199,1],[197,2],[202,3],[198,1],[200,4],[201,1],[207,5],[208,2],[119,6],[209,2],[203,2],[210,7],[211,7],[205,2],[212,2],[213,8],[214,9],[222,10],[40,2],[223,2],[204,11],[121,12],[122,13],[120,14],[123,15],[124,16],[125,17],[126,18],[127,19],[128,20],[129,21],[130,22],[131,23],[132,24],[187,2],[224,11],[226,2],[227,25],[59,26],[60,26],[62,27],[63,28],[64,29],[65,30],[66,31],[67,32],[68,33],[69,34],[70,35],[71,36],[72,36],[73,37],[74,38],[75,39],[76,40],[61,2],[108,2],[77,41],[78,42],[79,43],[109,44],[80,45],[81,46],[82,47],[83,48],[84,49],[85,50],[86,51],[87,52],[88,53],[89,54],[90,55],[91,56],[93,57],[92,58],[94,59],[95,60],[96,61],[97,62],[98,63],[99,64],[100,65],[101,66],[102,67],[103,68],[104,69],[105,70],[106,71],[107,72],[228,2],[231,73],[229,74],[206,74],[232,2],[233,75],[234,76],[235,2],[230,2],[236,2],[237,2],[238,2],[239,77],[240,78],[241,2],[242,79],[225,74],[215,2],[219,80],[221,81],[220,80],[218,82],[56,2],[186,2],[217,83],[216,2],[144,2],[137,2],[110,84],[113,85],[111,84],[112,86],[58,87],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[38,2],[34,2],[35,2],[36,2],[37,2],[1,2],[39,2],[57,2],[169,2],[171,88],[170,89],[172,90],[173,91],[143,92],[183,93],[176,94],[174,95],[175,2],[179,96],[177,97],[178,98],[153,89],[180,99],[182,100],[181,101],[193,102],[41,89],[192,103],[194,104],[55,89],[115,105],[114,106],[116,2],[134,107],[135,89],[140,108],[136,109],[139,110],[145,111],[141,112],[195,113],[138,114],[184,89],[147,115],[151,116],[152,117],[149,118],[148,119],[150,2],[154,120],[155,121],[156,122],[157,123],[167,124],[158,125],[160,126],[165,127],[166,128],[161,129],[164,130],[162,131],[163,132],[42,2],[43,133],[44,133],[45,133],[47,134],[46,133],[146,129],[159,135],[196,136],[190,137],[189,138],[185,139],[191,140],[188,141],[117,89],[118,142],[52,143],[50,144],[168,145],[48,2],[54,146],[49,147],[53,147],[51,2],[142,2],[133,148]],"exportedModulesMap":[[199,1],[197,2],[202,3],[198,1],[200,4],[201,1],[207,5],[208,2],[119,6],[209,2],[203,2],[210,7],[211,7],[205,2],[212,2],[213,8],[214,9],[222,10],[40,2],[223,2],[204,11],[121,12],[122,13],[120,14],[123,15],[124,16],[125,17],[126,18],[127,19],[128,20],[129,21],[130,22],[131,23],[132,24],[187,2],[224,11],[226,2],[227,25],[59,26],[60,26],[62,27],[63,28],[64,29],[65,30],[66,31],[67,32],[68,33],[69,34],[70,35],[71,36],[72,36],[73,37],[74,38],[75,39],[76,40],[61,2],[108,2],[77,41],[78,42],[79,43],[109,44],[80,45],[81,46],[82,47],[83,48],[84,49],[85,50],[86,51],[87,52],[88,53],[89,54],[90,55],[91,56],[93,57],[92,58],[94,59],[95,60],[96,61],[97,62],[98,63],[99,64],[100,65],[101,66],[102,67],[103,68],[104,69],[105,70],[106,71],[107,72],[228,2],[231,73],[229,74],[206,74],[232,2],[233,75],[234,76],[235,2],[230,2],[236,2],[237,2],[238,2],[239,77],[240,78],[241,2],[242,79],[225,74],[215,2],[219,80],[221,81],[220,80],[218,82],[56,2],[186,2],[217,83],[216,2],[144,2],[137,2],[110,84],[113,85],[111,84],[112,86],[58,87],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[38,2],[34,2],[35,2],[36,2],[37,2],[1,2],[39,2],[57,2],[169,2],[171,88],[170,89],[172,90],[173,91],[143,92],[183,93],[176,94],[174,95],[175,2],[179,96],[177,97],[178,98],[153,89],[180,99],[182,100],[181,101],[193,102],[41,89],[192,103],[194,104],[55,89],[115,105],[114,106],[116,2],[134,107],[135,89],[140,108],[136,109],[139,110],[145,111],[141,112],[195,113],[138,114],[184,89],[147,115],[151,116],[152,117],[149,118],[148,119],[150,2],[154,120],[155,121],[156,122],[157,123],[167,124],[158,125],[160,126],[165,127],[166,128],[161,129],[164,130],[162,131],[163,132],[42,2],[43,133],[44,133],[45,133],[47,134],[46,133],[146,129],[159,135],[196,136],[190,137],[189,138],[185,139],[191,140],[188,141],[117,89],[118,142],[52,143],[50,144],[168,145],[48,2],[54,146],[49,147],[53,147],[51,2],[142,2],[133,148]],"semanticDiagnosticsPerFile":[199,197,202,198,200,201,207,208,119,209,203,210,211,205,212,213,214,222,40,223,204,121,122,120,123,124,125,126,127,128,129,130,131,132,187,224,226,227,59,60,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,61,108,77,78,79,109,80,81,82,83,84,85,86,87,88,89,90,91,93,92,94,95,96,97,98,99,100,101,102,103,104,105,106,107,228,231,229,206,232,233,234,235,230,236,237,238,239,240,241,242,225,215,219,221,220,218,56,186,217,216,144,137,110,113,111,112,58,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,38,34,35,36,37,1,39,57,169,171,170,172,173,143,183,176,174,175,179,177,178,153,180,182,181,193,41,192,194,55,115,114,116,134,135,140,136,139,145,141,195,138,184,147,151,152,149,148,150,154,155,156,157,167,158,160,165,166,161,164,162,163,42,43,44,45,47,46,146,159,196,190,189,185,191,188,117,118,52,50,168,48,54,49,53,51,142,133]},"version":"4.5.4"}
|
|
@@ -4,10 +4,14 @@ export declare type Artifacts = {
|
|
|
4
4
|
when?: "always" | "on_success" | "on_failure";
|
|
5
5
|
};
|
|
6
6
|
export declare type GitlabJobCache = {
|
|
7
|
-
key:
|
|
7
|
+
key: GitlabJobCacheKey;
|
|
8
8
|
policy?: string;
|
|
9
9
|
paths: string[];
|
|
10
10
|
};
|
|
11
|
+
export declare type GitlabJobCacheKey = string | {
|
|
12
|
+
files: string[];
|
|
13
|
+
prefix?: string;
|
|
14
|
+
};
|
|
11
15
|
export declare type GitlabRule = {
|
|
12
16
|
if?: string;
|
|
13
17
|
when?: "always" | "on_success" | "manual" | "never";
|
package/package.json
CHANGED
package/src/build/index.ts
CHANGED
|
@@ -4,6 +4,7 @@ import type { EnvironmentContext } from "../types/environmentContext";
|
|
|
4
4
|
import type { CatladderJob } from "../types/jobs";
|
|
5
5
|
import { createCustomJobs } from "./custom";
|
|
6
6
|
import { createNodeJobs, createStorybookJobs, createMeteorJobs } from "./node";
|
|
7
|
+
import { createRailsJobs } from "./rails";
|
|
7
8
|
|
|
8
9
|
import type { BuildConfig, BuildConfigType } from "./types";
|
|
9
10
|
export * from "./types";
|
|
@@ -48,4 +49,8 @@ export const BUILD_TYPES: BuildTypes = {
|
|
|
48
49
|
jobs: createCustomJobs,
|
|
49
50
|
defaults: () => ({}),
|
|
50
51
|
},
|
|
52
|
+
rails: {
|
|
53
|
+
jobs: createRailsJobs,
|
|
54
|
+
defaults: () => ({}),
|
|
55
|
+
},
|
|
51
56
|
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { Context } from "../..";
|
|
2
|
+
import type { CatladderJob } from "../../types/jobs";
|
|
3
|
+
import { createDockerBuildJobBase, gitlabDockerLogin } from "../docker";
|
|
4
|
+
|
|
5
|
+
export const createRailsBuildJobs = (context: Context): CatladderJob[] => {
|
|
6
|
+
return [
|
|
7
|
+
createDockerBuildJobBase(context, {
|
|
8
|
+
variables: {
|
|
9
|
+
CNB_BUILDER: "heroku/buildpacks:18",
|
|
10
|
+
CNB_ENV_VARS: "BUNDLE_GIT__PANTER__CH",
|
|
11
|
+
CNB_EXTRA_ARGS: "",
|
|
12
|
+
CNB_PACK_VERSION: "0.20.0",
|
|
13
|
+
...context.componentConfig.build.extraVars
|
|
14
|
+
},
|
|
15
|
+
// custom script
|
|
16
|
+
script: [
|
|
17
|
+
gitlabDockerLogin,
|
|
18
|
+
`docker pull $DOCKER_CACHE_IMAGE || true`,
|
|
19
|
+
`wget --output-document=- https://github.com/buildpacks/pack/releases/download/v$CNB_PACK_VERSION/pack-v$CNB_PACK_VERSION-linux.tgz | tar -zx --directory /usr/local/bin pack`,
|
|
20
|
+
`chmod +x /usr/local/bin/pack`,
|
|
21
|
+
// replace private git ssh gem sources with https to make bundler with credentials via env var work
|
|
22
|
+
// eslint-disable-next-line no-useless-escape
|
|
23
|
+
`sed --in-place 's|git@\([^:]*\):|https://\1/|g' Gemfile Gemfile.lock`,
|
|
24
|
+
`for v in $CNB_ENV_VARS; do env_args="$env_args --env $v"; done`,
|
|
25
|
+
`pack build $DOCKER_IMAGE:$DOCKER_IMAGE_TAG --builder $CNB_BUILDER --publish --cache-image $DOCKER_CACHE_IMAGE $env_args $CNB_EXTRA_ARGS`,
|
|
26
|
+
],
|
|
27
|
+
}),
|
|
28
|
+
];
|
|
29
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Context } from "../../types";
|
|
2
|
+
import { CatladderJob } from "../../types/jobs";
|
|
3
|
+
import { createRailsBuildJobs } from "./build";
|
|
4
|
+
import { createRailsTestJobs } from "./test";
|
|
5
|
+
|
|
6
|
+
export const createRailsJobs = (context: Context): CatladderJob[] => {
|
|
7
|
+
return [...createRailsTestJobs(context), ...createRailsBuildJobs(context)];
|
|
8
|
+
};
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import type { Context } from "../..";
|
|
2
|
+
import type { CatladderJob } from "../../types/jobs";
|
|
3
|
+
import { ensureArray, notNil } from "../../utils";
|
|
4
|
+
|
|
5
|
+
export const createRailsTestJobs = (context: Context): CatladderJob[] => {
|
|
6
|
+
// don't run tests after release
|
|
7
|
+
if (context.commitInfo?.trigger === "taggedRelease") {
|
|
8
|
+
return [];
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
const buildConfig = context.componentConfig.build;
|
|
12
|
+
|
|
13
|
+
const base: Omit<CatladderJob, "script" | "name"> = {
|
|
14
|
+
variables: buildConfig.extraVars ?? {},
|
|
15
|
+
stage: "test",
|
|
16
|
+
needs: [],
|
|
17
|
+
envMode: "none",
|
|
18
|
+
};
|
|
19
|
+
const defaultImage = "docker.io/ruby";
|
|
20
|
+
const bundlerCacheDir = "tmp/cache"
|
|
21
|
+
const bundlerInstall = [
|
|
22
|
+
`bundle config set path '${bundlerCacheDir}'`,
|
|
23
|
+
"bundle install -j $(nproc)"
|
|
24
|
+
]
|
|
25
|
+
const bundlerCache = {
|
|
26
|
+
key: {
|
|
27
|
+
files: ["Gemfile.lock"],
|
|
28
|
+
prefix: "$CI_JOB_IMAGE"
|
|
29
|
+
},
|
|
30
|
+
paths: [bundlerCacheDir]
|
|
31
|
+
}
|
|
32
|
+
const auditJob: CatladderJob | null =
|
|
33
|
+
buildConfig.audit !== false
|
|
34
|
+
? {
|
|
35
|
+
name: "๐ก audit",
|
|
36
|
+
|
|
37
|
+
...base,
|
|
38
|
+
cache: undefined, // audit does not need bundle install and no cache
|
|
39
|
+
image: buildConfig.audit?.jobImage ?? defaultImage,
|
|
40
|
+
script: [
|
|
41
|
+
`cd ${context.componentConfig.dir}`,
|
|
42
|
+
...(ensureArray(buildConfig.audit?.command) ?? [
|
|
43
|
+
"gem install bundler-audit",
|
|
44
|
+
"bundle audit check"
|
|
45
|
+
]),
|
|
46
|
+
],
|
|
47
|
+
allow_failure: true,
|
|
48
|
+
}
|
|
49
|
+
: null;
|
|
50
|
+
|
|
51
|
+
const lintJob: CatladderJob | null =
|
|
52
|
+
buildConfig.lint !== false
|
|
53
|
+
? {
|
|
54
|
+
name: "๐ฎ lint",
|
|
55
|
+
|
|
56
|
+
...base,
|
|
57
|
+
cache: bundlerCache,
|
|
58
|
+
image: buildConfig.lint?.jobImage ?? defaultImage,
|
|
59
|
+
script: [
|
|
60
|
+
`cd ${context.componentConfig.dir}`,
|
|
61
|
+
...bundlerInstall,
|
|
62
|
+
...(ensureArray(buildConfig.lint?.command) ?? ["bundle exec rubocop"]),
|
|
63
|
+
],
|
|
64
|
+
}
|
|
65
|
+
: null;
|
|
66
|
+
const testJob: CatladderJob | null =
|
|
67
|
+
buildConfig.test !== false
|
|
68
|
+
? {
|
|
69
|
+
name: "๐งช test",
|
|
70
|
+
|
|
71
|
+
...base,
|
|
72
|
+
cache: bundlerCache,
|
|
73
|
+
image: buildConfig.test?.jobImage ?? defaultImage,
|
|
74
|
+
script: [
|
|
75
|
+
`cd ${context.componentConfig.dir}`,
|
|
76
|
+
...bundlerInstall,
|
|
77
|
+
...(ensureArray(buildConfig.test?.command) ?? ["bundle exec rspec"]),
|
|
78
|
+
],
|
|
79
|
+
}
|
|
80
|
+
: null;
|
|
81
|
+
return [auditJob, lintJob, testJob].filter(notNil);
|
|
82
|
+
};
|
package/src/build/types.ts
CHANGED
|
@@ -29,6 +29,7 @@ export type BuildConfigBase = {
|
|
|
29
29
|
| false
|
|
30
30
|
| {
|
|
31
31
|
command?: string | string[];
|
|
32
|
+
jobImage?: string;
|
|
32
33
|
};
|
|
33
34
|
|
|
34
35
|
/**
|
|
@@ -38,6 +39,7 @@ export type BuildConfigBase = {
|
|
|
38
39
|
| false
|
|
39
40
|
| {
|
|
40
41
|
command?: string | string[];
|
|
42
|
+
jobImage?: string;
|
|
41
43
|
};
|
|
42
44
|
|
|
43
45
|
/**
|
|
@@ -47,6 +49,7 @@ export type BuildConfigBase = {
|
|
|
47
49
|
| false
|
|
48
50
|
| {
|
|
49
51
|
command?: string | string[];
|
|
52
|
+
jobImage?: string;
|
|
50
53
|
};
|
|
51
54
|
|
|
52
55
|
/**
|
|
@@ -113,6 +116,10 @@ export type BuildConfigCustom = BuildConfigBase & {
|
|
|
113
116
|
docker: BuildConfigCustomDocker;
|
|
114
117
|
};
|
|
115
118
|
|
|
119
|
+
export type BuildConfigRails = BuildConfigBase & {
|
|
120
|
+
type: "rails";
|
|
121
|
+
};
|
|
122
|
+
|
|
116
123
|
export type BuildConfigStorybook = BuildConfigNodeBase & {
|
|
117
124
|
type: "storybook";
|
|
118
125
|
startCommand?: never;
|
|
@@ -122,7 +129,8 @@ export type BuildConfig =
|
|
|
122
129
|
| BuildConfigNodeStatic
|
|
123
130
|
| BuildConfigStorybook
|
|
124
131
|
| BuildConfigMeteor
|
|
125
|
-
| BuildConfigCustom
|
|
132
|
+
| BuildConfigCustom
|
|
133
|
+
| BuildConfigRails;
|
|
126
134
|
|
|
127
135
|
export type BuildConfigType = BuildConfig["type"];
|
|
128
136
|
|
|
@@ -65,7 +65,8 @@ export const getEnvironmentVariables = async (
|
|
|
65
65
|
|
|
66
66
|
predefinedVariables = {
|
|
67
67
|
...basePredefinedVariables,
|
|
68
|
-
HOST
|
|
68
|
+
// Rails before 6.1 (mis)uses the `HOST` environment variable to specify the IP to bind to
|
|
69
|
+
...(config.components[componentName].build.type === "rails" ? {} : {HOST: host}),
|
|
69
70
|
ROOT_URL: url,
|
|
70
71
|
...additionalEnvVars,
|
|
71
72
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { dump } from "js-yaml";
|
|
2
|
-
import { merge, omit } from "lodash";
|
|
2
|
+
import { isNil, merge, omit } from "lodash";
|
|
3
3
|
import { GCLOUD_DEPLOY_CREDENTIALS_KEY } from ".";
|
|
4
4
|
import { getDockerJobBaseProps, gitlabDockerLogin } from "../../build/docker";
|
|
5
5
|
import { getLabels } from "../../context/getLabels";
|
|
@@ -95,8 +95,10 @@ export const createGoogleCloudRunDeployJobs = (
|
|
|
95
95
|
}));
|
|
96
96
|
|
|
97
97
|
const getServiceDeployScript = (
|
|
98
|
-
service
|
|
98
|
+
service: DeployConfigCloudRunService | true | undefined,
|
|
99
|
+
nameSuffix?: string
|
|
99
100
|
) => {
|
|
101
|
+
const customConfig = service !== true ? service : undefined;
|
|
100
102
|
const command =
|
|
101
103
|
service !== true
|
|
102
104
|
? service?.command ?? context.componentConfig.build.startCommand
|
|
@@ -106,7 +108,21 @@ export const createGoogleCloudRunDeployJobs = (
|
|
|
106
108
|
? `--command="${command.split(" ").join(",")}"`
|
|
107
109
|
: "";
|
|
108
110
|
|
|
109
|
-
|
|
111
|
+
const args = {
|
|
112
|
+
"allow-unauthenticated": true,
|
|
113
|
+
"min-instances": customConfig?.minInstances,
|
|
114
|
+
"max-instances": customConfig?.maxInstances,
|
|
115
|
+
"no-cpu-throttling": customConfig?.noCpuThrottling,
|
|
116
|
+
} as const;
|
|
117
|
+
|
|
118
|
+
const argsString = Object.entries(args)
|
|
119
|
+
.filter(([, value]) => !isNil(value))
|
|
120
|
+
.map(([key, value]) => `--${key}${value !== true ? `=${value}` : ""}`)
|
|
121
|
+
.join(" ");
|
|
122
|
+
|
|
123
|
+
return `gcloud run deploy ${serviceName}${
|
|
124
|
+
nameSuffix ?? ""
|
|
125
|
+
} ${commandArg} ${commonDeployArgs} --env-vars-file=____envvars.yaml ${argsString}`;
|
|
110
126
|
};
|
|
111
127
|
|
|
112
128
|
const getJobCreateScriptsForJob = (
|
|
@@ -190,6 +206,9 @@ export const createGoogleCloudRunDeployJobs = (
|
|
|
190
206
|
...(deployConfig.service !== false
|
|
191
207
|
? [getServiceDeployScript(deployConfig.service)]
|
|
192
208
|
: []),
|
|
209
|
+
...Object.entries(deployConfig.additionalServices ?? {}).map(
|
|
210
|
+
([name, service]) => getServiceDeployScript(service, "-" + name)
|
|
211
|
+
),
|
|
193
212
|
...getJobRunScripts("postDeploy"),
|
|
194
213
|
|
|
195
214
|
`docker image rm ${gcloudImageName}`,
|
|
@@ -200,6 +219,10 @@ export const createGoogleCloudRunDeployJobs = (
|
|
|
200
219
|
...(deployConfig.service !== false
|
|
201
220
|
? [`gcloud run services delete ${serviceName} ${commonArgs}`]
|
|
202
221
|
: []),
|
|
222
|
+
...Object.entries(deployConfig.additionalServices ?? {}).map(
|
|
223
|
+
([name]) =>
|
|
224
|
+
`gcloud run services delete ${serviceName}-${name} ${commonArgs}`
|
|
225
|
+
),
|
|
203
226
|
...getDeleteSchedulesScripts(),
|
|
204
227
|
...getDeleteJobsScripts(),
|
|
205
228
|
...(deployConfig.cloudSql && deployConfig.cloudSql.deleteDatabaseOnStop
|