@goldstack/template-ssr-server-compile-bundle 0.1.1 → 0.1.4
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,21 +1,30 @@
|
|
|
1
|
+
import type { BuildOptions } from 'esbuild';
|
|
1
2
|
import { APIGatewayProxyResultV2 } from 'aws-lambda';
|
|
3
|
+
import { StaticFileMapperManager } from 'static-file-mapper-build';
|
|
4
|
+
import type { ClientBuildOptionsArgs, ServerBuildOptionsArgs } from '@goldstack/utils-aws-lambda';
|
|
5
|
+
export type { ClientBuildOptionsArgs, ServerBuildOptionsArgs, } from '@goldstack/utils-aws-lambda';
|
|
6
|
+
export interface BuildConfiguration {
|
|
7
|
+
staticFileMapper: StaticFileMapperManager;
|
|
8
|
+
createClientBuildOptions: (args: ClientBuildOptionsArgs) => BuildOptions;
|
|
9
|
+
createServerBuildOptions: (args: ServerBuildOptionsArgs) => BuildOptions;
|
|
10
|
+
}
|
|
2
11
|
export interface CompileBundleResponse {
|
|
3
12
|
bundle: string;
|
|
4
13
|
sourceMap?: string;
|
|
5
14
|
metaFile?: string;
|
|
6
15
|
}
|
|
7
|
-
export declare const compileBundle: ({ entryPoint, metaFile,
|
|
16
|
+
export declare const compileBundle: ({ entryPoint, metaFile, buildOptions, buildConfig, }: {
|
|
8
17
|
entryPoint: string;
|
|
9
18
|
metaFile?: boolean | undefined;
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
includeCss: boolean;
|
|
19
|
+
buildOptions: ClientBuildOptionsArgs;
|
|
20
|
+
buildConfig: BuildConfiguration;
|
|
13
21
|
}) => Promise<CompileBundleResponse>;
|
|
14
|
-
export declare const bundleResponse: ({ entryPoint,
|
|
22
|
+
export declare const bundleResponse: ({ entryPoint, buildConfig, }: {
|
|
15
23
|
entryPoint: string;
|
|
16
|
-
|
|
24
|
+
buildConfig: BuildConfiguration;
|
|
17
25
|
}) => Promise<APIGatewayProxyResultV2>;
|
|
18
|
-
export declare const sourceMapResponse: ({ entryPoint, }: {
|
|
26
|
+
export declare const sourceMapResponse: ({ entryPoint, buildConfig, }: {
|
|
19
27
|
entryPoint: string;
|
|
28
|
+
buildConfig: BuildConfiguration;
|
|
20
29
|
}) => Promise<APIGatewayProxyResultV2>;
|
|
21
30
|
//# sourceMappingURL=templateSSRServerCompileBundle.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"templateSSRServerCompileBundle.d.ts","sourceRoot":"","sources":["../../src/templateSSRServerCompileBundle.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"templateSSRServerCompileBundle.d.ts","sourceRoot":"","sources":["../../src/templateSSRServerCompileBundle.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAA2B,MAAM,SAAS,CAAC;AAErE,OAAO,EAAE,uBAAuB,EAAE,MAAM,YAAY,CAAC;AAIrD,OAAO,EAAE,uBAAuB,EAAE,MAAM,0BAA0B,CAAC;AAEnE,OAAO,KAAK,EACV,sBAAsB,EACtB,sBAAsB,EACvB,MAAM,6BAA6B,CAAC;AAErC,YAAY,EACV,sBAAsB,EACtB,sBAAsB,GACvB,MAAM,6BAA6B,CAAC;AAErC,MAAM,WAAW,kBAAkB;IACjC,gBAAgB,EAAE,uBAAuB,CAAC;IAC1C,wBAAwB,EAAE,CAAC,IAAI,EAAE,sBAAsB,KAAK,YAAY,CAAC;IACzE,wBAAwB,EAAE,CAAC,IAAI,EAAE,sBAAsB,KAAK,YAAY,CAAC;CAC1E;AAYD,MAAM,WAAW,qBAAqB;IACpC,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAsBD,eAAO,MAAM,aAAa;gBAMZ,MAAM;;kBAEJ,sBAAsB;iBACvB,kBAAkB;MAC7B,QAAQ,qBAAqB,CAsChC,CAAC;AAEF,eAAO,MAAM,cAAc;gBAIb,MAAM;iBACL,kBAAkB;MAC7B,QAAQ,uBAAuB,CAqBlC,CAAC;AAqBF,eAAO,MAAM,iBAAiB;gBAIhB,MAAM;iBACL,kBAAkB;MAC7B,QAAQ,uBAAuB,CAyBlC,CAAC"}
|
|
@@ -1,42 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
3
|
exports.sourceMapResponse = exports.bundleResponse = exports.compileBundle = void 0;
|
|
7
4
|
const esbuild_1 = require("esbuild");
|
|
8
|
-
const esbuild_plugin_pnp_1 = require("@yarnpkg/esbuild-plugin-pnp");
|
|
9
|
-
const esbuild_css_modules_client_plugin_1 = __importDefault(require("esbuild-css-modules-client-plugin"));
|
|
10
5
|
const utils_sh_1 = require("@goldstack/utils-sh");
|
|
11
6
|
const path_1 = require("path");
|
|
12
|
-
const
|
|
13
|
-
|
|
14
|
-
plugins: [
|
|
15
|
-
(0, esbuild_css_modules_client_plugin_1.default)({
|
|
16
|
-
excludeCSSInject: !includeCss,
|
|
17
|
-
}),
|
|
18
|
-
(0, esbuild_plugin_pnp_1.pnpPlugin)(),
|
|
19
|
-
],
|
|
20
|
-
bundle: true,
|
|
21
|
-
outfile: '/dist/tmp/bundle.js',
|
|
22
|
-
external: [
|
|
23
|
-
'esbuild',
|
|
24
|
-
'@yarnpkg/esbuild-plugin-pnp',
|
|
25
|
-
'@swc/core',
|
|
26
|
-
'@swc/jest',
|
|
27
|
-
'@goldstack/template-ssr-server', // this is only required on the server side
|
|
28
|
-
],
|
|
29
|
-
minify: true,
|
|
30
|
-
platform: 'browser',
|
|
31
|
-
format: 'iife',
|
|
32
|
-
treeShaking: true,
|
|
33
|
-
};
|
|
34
|
-
};
|
|
35
|
-
const getEsBuildConfig = (entryPoint) => {
|
|
36
|
-
const esbuildConfig = (0, utils_sh_1.readToType)('./esbuild.config.json');
|
|
7
|
+
const getBuildConfig = (entryPoint) => {
|
|
8
|
+
const buildConfig = (0, utils_sh_1.readToType)('./esbuild.config.json');
|
|
37
9
|
const esbuildLocalPath = (0, utils_sh_1.changeExtension)((0, path_1.dirname)(entryPoint), '.esbuild.config.json');
|
|
38
|
-
const
|
|
39
|
-
return { ...
|
|
10
|
+
const localBuildConfig = (0, utils_sh_1.readToType)(esbuildLocalPath);
|
|
11
|
+
return { ...buildConfig, ...localBuildConfig };
|
|
40
12
|
};
|
|
41
13
|
const getOutput = (extension, result) => {
|
|
42
14
|
const matchedFiles = result.outputFiles.filter((file) => file.path.endsWith(extension));
|
|
@@ -46,35 +18,35 @@ const getOutput = (extension, result) => {
|
|
|
46
18
|
const output = Buffer.from(matchedFiles[0].contents).toString('utf-8');
|
|
47
19
|
return output;
|
|
48
20
|
};
|
|
49
|
-
const compileBundle = async ({ entryPoint, metaFile,
|
|
21
|
+
const compileBundle = async ({ entryPoint, metaFile, buildOptions, buildConfig, }) => {
|
|
22
|
+
const clientBuildConfig = buildConfig.createClientBuildOptions(buildOptions);
|
|
23
|
+
if (clientBuildConfig.sourcemap && clientBuildConfig.sourcemap !== 'inline') {
|
|
24
|
+
throw new Error('Only `inline` is supported for the `sourcemap` parameter');
|
|
25
|
+
}
|
|
50
26
|
const res = await (0, esbuild_1.build)({
|
|
51
|
-
...
|
|
27
|
+
...clientBuildConfig,
|
|
52
28
|
entryPoints: [entryPoint],
|
|
53
29
|
metafile: metaFile,
|
|
54
|
-
|
|
55
|
-
...getEsBuildConfig(entryPoint),
|
|
30
|
+
...getBuildConfig(entryPoint),
|
|
56
31
|
write: false,
|
|
57
32
|
});
|
|
58
33
|
const output = getOutput('.js', res);
|
|
59
34
|
let result = {
|
|
60
35
|
bundle: '',
|
|
61
36
|
};
|
|
62
|
-
if (!
|
|
37
|
+
if (!clientBuildConfig.sourcemap) {
|
|
63
38
|
result.bundle = output;
|
|
64
39
|
}
|
|
65
40
|
else {
|
|
66
41
|
result.bundle = removeSourceMap(output);
|
|
67
42
|
}
|
|
68
|
-
if (initialProperties) {
|
|
69
|
-
result.bundle = `window.initialProperties = ${JSON.stringify(initialProperties)};${result.bundle}`;
|
|
70
|
-
}
|
|
71
43
|
if (metaFile) {
|
|
72
44
|
result = {
|
|
73
45
|
...result,
|
|
74
46
|
metaFile: JSON.stringify(res.metafile),
|
|
75
47
|
};
|
|
76
48
|
}
|
|
77
|
-
if (
|
|
49
|
+
if (clientBuildConfig.sourcemap) {
|
|
78
50
|
result = {
|
|
79
51
|
...result,
|
|
80
52
|
sourceMap: extractSourceMap(output),
|
|
@@ -83,14 +55,17 @@ const compileBundle = async ({ entryPoint, metaFile, sourceMap, initialPropertie
|
|
|
83
55
|
return result;
|
|
84
56
|
};
|
|
85
57
|
exports.compileBundle = compileBundle;
|
|
86
|
-
const bundleResponse = async ({ entryPoint,
|
|
58
|
+
const bundleResponse = async ({ entryPoint, buildConfig, }) => {
|
|
87
59
|
const res = await (0, exports.compileBundle)({
|
|
88
60
|
entryPoint,
|
|
89
|
-
|
|
90
|
-
|
|
61
|
+
buildOptions: {
|
|
62
|
+
deploymentName: 'local',
|
|
63
|
+
includeCss: true,
|
|
64
|
+
},
|
|
65
|
+
buildConfig,
|
|
91
66
|
});
|
|
92
67
|
return {
|
|
93
|
-
statusCode:
|
|
68
|
+
statusCode: 200,
|
|
94
69
|
headers: {
|
|
95
70
|
'Content-Type': 'application/javascript',
|
|
96
71
|
'Cache-Control': 'no-cache, no-store, must-revalidate',
|
|
@@ -115,18 +90,21 @@ const removeSourceMap = (output) => {
|
|
|
115
90
|
const withoutSourceMap = output.substring(0, startContent);
|
|
116
91
|
return withoutSourceMap;
|
|
117
92
|
};
|
|
118
|
-
const sourceMapResponse = async ({ entryPoint, }) => {
|
|
93
|
+
const sourceMapResponse = async ({ entryPoint, buildConfig, }) => {
|
|
119
94
|
const res = await (0, esbuild_1.build)({
|
|
120
|
-
...
|
|
95
|
+
...buildConfig.createClientBuildOptions({
|
|
96
|
+
includeCss: false,
|
|
97
|
+
deploymentName: 'local',
|
|
98
|
+
}),
|
|
121
99
|
entryPoints: [entryPoint],
|
|
122
100
|
sourcemap: 'inline',
|
|
123
|
-
...
|
|
101
|
+
...getBuildConfig(entryPoint),
|
|
124
102
|
write: false,
|
|
125
103
|
});
|
|
126
104
|
const output = Buffer.from(res.outputFiles[0].contents).toString('utf-8');
|
|
127
105
|
const sourceMapData = extractSourceMap(output);
|
|
128
106
|
return {
|
|
129
|
-
statusCode:
|
|
107
|
+
statusCode: 200,
|
|
130
108
|
headers: {
|
|
131
109
|
'Content-Type': 'application/json',
|
|
132
110
|
'Cache-Control': 'no-cache, no-store, must-revalidate',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"templateSSRServerCompileBundle.js","sourceRoot":"","sources":["../../src/templateSSRServerCompileBundle.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"templateSSRServerCompileBundle.js","sourceRoot":"","sources":["../../src/templateSSRServerCompileBundle.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@goldstack/template-ssr-server-compile-bundle",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Utility for compiling client side bundles for SSR application",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"goldstack",
|
|
@@ -36,30 +36,29 @@
|
|
|
36
36
|
"version:apply:force": "yarn version $@ && yarn version apply"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@goldstack/infra": "0.3.
|
|
40
|
-
"@goldstack/infra-aws": "0.3.
|
|
41
|
-
"@goldstack/utils-aws-lambda": "0.1.
|
|
42
|
-
"@goldstack/utils-esbuild": "0.4.
|
|
43
|
-
"@goldstack/utils-package": "0.3.
|
|
44
|
-
"@goldstack/utils-package-config-embedded": "0.4.
|
|
45
|
-
"@goldstack/utils-sh": "0.4.
|
|
46
|
-
"@goldstack/utils-template": "0.3.
|
|
47
|
-
"@goldstack/utils-terraform": "0.3.
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"esbuild-css-modules-client-plugin": "0.1.4",
|
|
51
|
-
"lambda-compression": "0.1.2",
|
|
39
|
+
"@goldstack/infra": "0.3.40",
|
|
40
|
+
"@goldstack/infra-aws": "0.3.49",
|
|
41
|
+
"@goldstack/utils-aws-lambda": "0.1.40",
|
|
42
|
+
"@goldstack/utils-esbuild": "0.4.4",
|
|
43
|
+
"@goldstack/utils-package": "0.3.43",
|
|
44
|
+
"@goldstack/utils-package-config-embedded": "0.4.7",
|
|
45
|
+
"@goldstack/utils-sh": "0.4.35",
|
|
46
|
+
"@goldstack/utils-template": "0.3.39",
|
|
47
|
+
"@goldstack/utils-terraform": "0.3.73",
|
|
48
|
+
"esbuild": "^0.15.5",
|
|
49
|
+
"lambda-compression": "0.1.3",
|
|
52
50
|
"react": "^18.2.0",
|
|
53
51
|
"react-dom": "^18.2.0",
|
|
54
|
-
"source-map-support": "^0.5.21"
|
|
52
|
+
"source-map-support": "^0.5.21",
|
|
53
|
+
"static-file-mapper-build": "0.1.1"
|
|
55
54
|
},
|
|
56
55
|
"devDependencies": {
|
|
57
56
|
"@goldstack/utils-docs-cli": "0.3.11",
|
|
58
|
-
"@goldstack/utils-git": "0.1.
|
|
59
|
-
"@goldstack/utils-package-config-generate": "0.2.
|
|
57
|
+
"@goldstack/utils-git": "0.1.37",
|
|
58
|
+
"@goldstack/utils-package-config-generate": "0.2.18",
|
|
60
59
|
"@types/aws-lambda": "^8.10.88",
|
|
61
|
-
"@types/jest": "^
|
|
62
|
-
"@types/node": "^
|
|
60
|
+
"@types/jest": "^28.1.8",
|
|
61
|
+
"@types/node": "^18.7.13",
|
|
63
62
|
"@types/react": "^18.0.15",
|
|
64
63
|
"@types/sha256": "^0",
|
|
65
64
|
"@types/yargs": "^17.0.10",
|