@goldstack/template-ssr-cli 0.3.2 → 0.3.5
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.
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
import { PackageConfig } from '@goldstack/utils-package-config';
|
|
2
|
+
import { SSRDeployment, SSRPackage } from '@goldstack/template-ssr';
|
|
1
3
|
import type { BuildConfiguration } from '@goldstack/template-ssr';
|
|
4
|
+
import { LambdaConfig } from '@goldstack/utils-aws-lambda';
|
|
2
5
|
export declare const run: (args: string[], buildConfig: BuildConfiguration) => Promise<void>;
|
|
6
|
+
export declare function readFunctionConfig(): {
|
|
7
|
+
config: SSRPackage;
|
|
8
|
+
lambdaRoutes: LambdaConfig[];
|
|
9
|
+
packageConfig: PackageConfig<SSRPackage, SSRDeployment>;
|
|
10
|
+
};
|
|
3
11
|
//# sourceMappingURL=templateSSRCli.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"templateSSRCli.d.ts","sourceRoot":"","sources":["../../src/templateSSRCli.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"templateSSRCli.d.ts","sourceRoot":"","sources":["../../src/templateSSRCli.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAC;AAQhE,OAAO,EAEL,aAAa,EACb,UAAU,EACX,MAAM,yBAAyB,CAAC;AACjC,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAElE,OAAO,EAML,YAAY,EACb,MAAM,6BAA6B,CAAC;AAOrC,eAAO,MAAM,GAAG,SACR,MAAM,EAAE,eACD,kBAAkB,KAC9B,QAAQ,IAAI,CAuJd,CAAC;AAEF,wBAAgB,kBAAkB,IAAI;IACpC,MAAM,EAAE,UAAU,CAAC;IACnB,YAAY,EAAE,YAAY,EAAE,CAAC;IAC7B,aAAa,EAAE,aAAa,CAAC,UAAU,EAAE,aAAa,CAAC,CAAC;CACzD,CAeA"}
|
|
@@ -3,13 +3,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.run = void 0;
|
|
7
|
-
const utils_package_1 = require("@goldstack/utils-package");
|
|
6
|
+
exports.readFunctionConfig = exports.run = void 0;
|
|
8
7
|
const utils_cli_1 = require("@goldstack/utils-cli");
|
|
9
8
|
const utils_terraform_1 = require("@goldstack/utils-terraform");
|
|
10
9
|
const utils_terraform_aws_1 = require("@goldstack/utils-terraform-aws");
|
|
11
10
|
const utils_package_config_1 = require("@goldstack/utils-package-config");
|
|
12
|
-
const
|
|
11
|
+
const utils_package_1 = require("@goldstack/utils-package");
|
|
13
12
|
const infra_1 = require("@goldstack/infra");
|
|
14
13
|
const yargs_1 = __importDefault(require("yargs"));
|
|
15
14
|
const fs_1 = __importDefault(require("fs"));
|
|
@@ -18,40 +17,61 @@ const utils_aws_lambda_1 = require("@goldstack/utils-aws-lambda");
|
|
|
18
17
|
const templateSSRConsts_1 = require("./templateSSRConsts");
|
|
19
18
|
const buildBundles_1 = require("./buildBundles");
|
|
20
19
|
const deployToS3_1 = require("./deployToS3");
|
|
20
|
+
const minimatch_1 = __importDefault(require("minimatch"));
|
|
21
21
|
const run = async (args, buildConfig) => {
|
|
22
22
|
await (0, utils_cli_1.wrapCli)(async () => {
|
|
23
|
-
const argv = await
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
23
|
+
const argv = await yargs_1.default
|
|
24
|
+
.scriptName('template')
|
|
25
|
+
.usage('$0 <infra|build|deploy>')
|
|
26
|
+
.command('infra <up|down|init|plan|apply|destroy|upgrade|terraform> <deployment>', 'Manage infrastructure for deployment', (0, utils_terraform_1.infraCommands)())
|
|
27
|
+
.command('build <deployment> [route]', 'Build deployment packages', (yargs) => {
|
|
28
|
+
return yargs
|
|
29
|
+
.positional('deployment', {
|
|
30
|
+
description: 'Name of the deployment where the package should be deployed to.',
|
|
31
|
+
type: 'string',
|
|
32
|
+
demandOption: true,
|
|
33
|
+
})
|
|
34
|
+
.positional('route', {
|
|
35
|
+
type: 'string',
|
|
36
|
+
demandOption: false,
|
|
37
|
+
description: 'A glob filter to select specific routes for deployment',
|
|
38
|
+
});
|
|
27
39
|
})
|
|
28
|
-
.command('
|
|
29
|
-
return
|
|
40
|
+
.command('deploy <deployment> [route]', 'Deploy to specified deployment', (yargs) => {
|
|
41
|
+
return yargs
|
|
42
|
+
.positional('deployment', {
|
|
43
|
+
description: 'Name of the deployment where the package should be deployed to.',
|
|
30
44
|
type: 'string',
|
|
31
|
-
|
|
32
|
-
|
|
45
|
+
demandOption: true,
|
|
46
|
+
})
|
|
47
|
+
.positional('route', {
|
|
48
|
+
type: 'string',
|
|
49
|
+
demandOption: false,
|
|
50
|
+
description: 'A glob filter to select specific routes for deployment',
|
|
33
51
|
});
|
|
34
52
|
})
|
|
35
53
|
.help()
|
|
36
54
|
.parse();
|
|
37
|
-
const packageConfig =
|
|
38
|
-
|
|
39
|
-
});
|
|
40
|
-
const config = packageConfig.getConfig();
|
|
41
|
-
// update routes
|
|
42
|
-
if (!fs_1.default.existsSync(templateSSRConsts_1.defaultRoutesPath)) {
|
|
43
|
-
throw new Error(`Please specify lambda function handlers in ${templateSSRConsts_1.defaultRoutesPath} so that API Gateway route configuration can be generated.`);
|
|
44
|
-
}
|
|
45
|
-
const lambdaRoutes = (0, utils_aws_lambda_1.readLambdaConfig)(templateSSRConsts_1.defaultRoutesPath);
|
|
55
|
+
const { config, lambdaRoutes, packageConfig } = readFunctionConfig();
|
|
56
|
+
let filteredLambdaRoutes = lambdaRoutes;
|
|
46
57
|
config.deployments = config.deployments.map((e) => {
|
|
47
|
-
const lambdasConfigs = (0, utils_aws_lambda_1.generateLambdaConfig)((0, template_ssr_1.createLambdaAPIDeploymentConfiguration)(e.configuration),
|
|
58
|
+
const lambdasConfigs = (0, utils_aws_lambda_1.generateLambdaConfig)((0, template_ssr_1.createLambdaAPIDeploymentConfiguration)(e.configuration), filteredLambdaRoutes);
|
|
48
59
|
e.configuration.lambdas = lambdasConfigs;
|
|
49
60
|
(0, utils_aws_lambda_1.validateDeployment)((0, template_ssr_1.createLambdaAPIDeploymentConfiguration)(e.configuration).lambdas);
|
|
50
61
|
return e;
|
|
51
62
|
});
|
|
52
|
-
(0,
|
|
63
|
+
(0, utils_package_1.writePackageConfig)(config);
|
|
53
64
|
const command = argv._[0];
|
|
54
65
|
const [, , , ...opArgs] = args;
|
|
66
|
+
if (command === 'build' || command === 'deploy') {
|
|
67
|
+
if (opArgs.length === 2) {
|
|
68
|
+
filteredLambdaRoutes = filteredLambdaRoutes.filter((el) => (0, minimatch_1.default)(el.relativeFilePath, `*${opArgs[1]}*`));
|
|
69
|
+
if (filteredLambdaRoutes.length === 0) {
|
|
70
|
+
console.warn(`Cannot perform command '${command}'. No routes match supplied filter ${opArgs[1]}.`);
|
|
71
|
+
return;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
55
75
|
if (command === 'infra') {
|
|
56
76
|
await (0, utils_terraform_aws_1.terraformAwsCli)(opArgs, {
|
|
57
77
|
// temporary workaround for https://github.com/goldstack/goldstack/issues/40
|
|
@@ -61,20 +81,27 @@ const run = async (args, buildConfig) => {
|
|
|
61
81
|
}
|
|
62
82
|
if (command === 'build') {
|
|
63
83
|
const deployment = packageConfig.getDeployment(opArgs[0]);
|
|
84
|
+
let routeFilter = undefined;
|
|
85
|
+
if (opArgs.length === 2) {
|
|
86
|
+
routeFilter = `*${opArgs[1]}*`;
|
|
87
|
+
}
|
|
64
88
|
const lambdaNamePrefix = deployment.configuration.lambdaNamePrefix;
|
|
65
|
-
|
|
89
|
+
// bundles need to be built first since static mappings are updated
|
|
90
|
+
// during bundle built and they are injected into function bundle
|
|
91
|
+
await (0, buildBundles_1.buildBundles)({
|
|
66
92
|
routesDir: templateSSRConsts_1.defaultRoutesPath,
|
|
93
|
+
configs: filteredLambdaRoutes,
|
|
67
94
|
deploymentName: deployment.name,
|
|
68
|
-
buildOptions: buildConfig.createServerBuildOptions,
|
|
69
|
-
configs: lambdaRoutes,
|
|
70
95
|
lambdaNamePrefix: lambdaNamePrefix || '',
|
|
96
|
+
buildConfig,
|
|
71
97
|
});
|
|
72
|
-
await (0,
|
|
98
|
+
await (0, utils_aws_lambda_1.buildFunctions)({
|
|
73
99
|
routesDir: templateSSRConsts_1.defaultRoutesPath,
|
|
74
|
-
configs: lambdaRoutes,
|
|
75
100
|
deploymentName: deployment.name,
|
|
101
|
+
buildOptions: buildConfig.createServerBuildOptions,
|
|
102
|
+
configs: filteredLambdaRoutes,
|
|
76
103
|
lambdaNamePrefix: lambdaNamePrefix || '',
|
|
77
|
-
|
|
104
|
+
routeFilter,
|
|
78
105
|
});
|
|
79
106
|
return;
|
|
80
107
|
}
|
|
@@ -89,7 +116,7 @@ const run = async (args, buildConfig) => {
|
|
|
89
116
|
routesPath: templateSSRConsts_1.defaultRoutesPath,
|
|
90
117
|
configuration: (0, template_ssr_1.createLambdaAPIDeploymentConfiguration)(config),
|
|
91
118
|
deployment: packageConfig.getDeployment(opArgs[0]),
|
|
92
|
-
config:
|
|
119
|
+
config: filteredLambdaRoutes,
|
|
93
120
|
}),
|
|
94
121
|
(0, deployToS3_1.deployToS3)({
|
|
95
122
|
configuration: (0, template_ssr_1.createLambdaAPIDeploymentConfiguration)(config),
|
|
@@ -104,4 +131,17 @@ const run = async (args, buildConfig) => {
|
|
|
104
131
|
});
|
|
105
132
|
};
|
|
106
133
|
exports.run = run;
|
|
134
|
+
function readFunctionConfig() {
|
|
135
|
+
const packageConfig = new utils_package_config_1.PackageConfig({
|
|
136
|
+
packagePath: './',
|
|
137
|
+
});
|
|
138
|
+
const config = packageConfig.getConfig();
|
|
139
|
+
// update routes
|
|
140
|
+
if (!fs_1.default.existsSync(templateSSRConsts_1.defaultRoutesPath)) {
|
|
141
|
+
throw new Error(`Please specify lambda function handlers in ${templateSSRConsts_1.defaultRoutesPath} so that API Gateway route configuration can be generated.`);
|
|
142
|
+
}
|
|
143
|
+
const lambdaRoutes = (0, utils_aws_lambda_1.readLambdaConfig)(templateSSRConsts_1.defaultRoutesPath);
|
|
144
|
+
return { config, lambdaRoutes, packageConfig };
|
|
145
|
+
}
|
|
146
|
+
exports.readFunctionConfig = readFunctionConfig;
|
|
107
147
|
//# sourceMappingURL=templateSSRCli.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"templateSSRCli.js","sourceRoot":"","sources":["../../src/templateSSRCli.ts"],"names":[],"mappings":";;;;;;
|
|
1
|
+
{"version":3,"file":"templateSSRCli.js","sourceRoot":"","sources":["../../src/templateSSRCli.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@goldstack/template-ssr-cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"description": "CLI tools for server-side rendering template",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"goldstack",
|
|
@@ -38,30 +38,32 @@
|
|
|
38
38
|
"version:apply:force": "yarn version $@ && yarn version apply"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@goldstack/infra": "0.4.
|
|
42
|
-
"@goldstack/infra-aws": "0.4.
|
|
43
|
-
"@goldstack/template-ssr": "0.3.
|
|
44
|
-
"@goldstack/template-ssr-server": "0.3.
|
|
45
|
-
"@goldstack/template-ssr-server-compile-bundle": "0.3.
|
|
46
|
-
"@goldstack/utils-aws-lambda": "0.3.
|
|
47
|
-
"@goldstack/utils-cli": "0.3.
|
|
48
|
-
"@goldstack/utils-docker": "0.4.
|
|
49
|
-
"@goldstack/utils-log": "0.3.
|
|
50
|
-
"@goldstack/utils-package": "0.4.
|
|
51
|
-
"@goldstack/utils-package-config": "0.4.
|
|
52
|
-
"@goldstack/utils-s3-deployment": "0.5.
|
|
53
|
-
"@goldstack/utils-sh": "0.5.
|
|
54
|
-
"@goldstack/utils-template": "0.4.
|
|
55
|
-
"@goldstack/utils-terraform": "0.4.
|
|
56
|
-
"@goldstack/utils-terraform-aws": "0.4.
|
|
41
|
+
"@goldstack/infra": "0.4.2",
|
|
42
|
+
"@goldstack/infra-aws": "0.4.3",
|
|
43
|
+
"@goldstack/template-ssr": "0.3.4",
|
|
44
|
+
"@goldstack/template-ssr-server": "0.3.4",
|
|
45
|
+
"@goldstack/template-ssr-server-compile-bundle": "0.3.4",
|
|
46
|
+
"@goldstack/utils-aws-lambda": "0.3.3",
|
|
47
|
+
"@goldstack/utils-cli": "0.3.2",
|
|
48
|
+
"@goldstack/utils-docker": "0.4.2",
|
|
49
|
+
"@goldstack/utils-log": "0.3.2",
|
|
50
|
+
"@goldstack/utils-package": "0.4.2",
|
|
51
|
+
"@goldstack/utils-package-config": "0.4.2",
|
|
52
|
+
"@goldstack/utils-s3-deployment": "0.5.3",
|
|
53
|
+
"@goldstack/utils-sh": "0.5.2",
|
|
54
|
+
"@goldstack/utils-template": "0.4.2",
|
|
55
|
+
"@goldstack/utils-terraform": "0.4.3",
|
|
56
|
+
"@goldstack/utils-terraform-aws": "0.4.3",
|
|
57
|
+
"minimatch": "^5.1.0",
|
|
57
58
|
"source-map-support": "^0.5.21",
|
|
58
59
|
"yargs": "^17.5.1"
|
|
59
60
|
},
|
|
60
61
|
"devDependencies": {
|
|
61
62
|
"@goldstack/utils-docs-cli": "0.3.11",
|
|
62
|
-
"@goldstack/utils-git": "0.2.
|
|
63
|
-
"@goldstack/utils-package-config-generate": "0.3.
|
|
64
|
-
"@types/jest": "^
|
|
63
|
+
"@goldstack/utils-git": "0.2.2",
|
|
64
|
+
"@goldstack/utils-package-config-generate": "0.3.2",
|
|
65
|
+
"@types/jest": "^29.0.1",
|
|
66
|
+
"@types/minimatch": "^5.1.2",
|
|
65
67
|
"@types/node": "^18.7.13",
|
|
66
68
|
"@types/yargs": "^17.0.10",
|
|
67
69
|
"jest": "^28.1.0",
|