@lwc/ssr-compiler 8.26.2 → 8.28.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/LICENSE.md +1 -1
- package/dist/index.cjs.js +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/package.json +6 -6
package/LICENSE.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
MIT LICENSE
|
|
4
4
|
|
|
5
|
-
Copyright (c)
|
|
5
|
+
Copyright (c) 2026, Salesforce, Inc.
|
|
6
6
|
All rights reserved.
|
|
7
7
|
|
|
8
8
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
package/dist/index.cjs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Copyright (c)
|
|
2
|
+
* Copyright (c) 2026 Salesforce, Inc.
|
|
3
3
|
*/
|
|
4
4
|
'use strict';
|
|
5
5
|
|
|
@@ -2716,5 +2716,5 @@ function compileTemplateForSSR(src, filename, options, mode = shared.DEFAULT_SSR
|
|
|
2716
2716
|
|
|
2717
2717
|
exports.compileComponentForSSR = compileComponentForSSR;
|
|
2718
2718
|
exports.compileTemplateForSSR = compileTemplateForSSR;
|
|
2719
|
-
/** version: 8.
|
|
2719
|
+
/** version: 8.28.0 */
|
|
2720
2720
|
//# sourceMappingURL=index.cjs.js.map
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { type CompilationMode } from '@lwc/shared';
|
|
|
2
2
|
import type { ComponentTransformOptions, TemplateTransformOptions } from './shared';
|
|
3
3
|
export interface CompilationResult {
|
|
4
4
|
code: string;
|
|
5
|
-
map:
|
|
5
|
+
map: undefined;
|
|
6
6
|
}
|
|
7
7
|
export declare function compileComponentForSSR(src: string, filename: string, options: ComponentTransformOptions, mode?: CompilationMode): CompilationResult;
|
|
8
8
|
export declare function compileTemplateForSSR(src: string, filename: string, options: TemplateTransformOptions, mode?: CompilationMode): CompilationResult;
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Copyright (c)
|
|
2
|
+
* Copyright (c) 2026 Salesforce, Inc.
|
|
3
3
|
*/
|
|
4
4
|
import { AMBIGUOUS_PROP_SET, DISALLOWED_PROP_SET, LWC_VERSION_COMMENT, isAPIFeatureEnabled, normalizeStyleAttributeValue, normalizeTabIndex, StringReplace, StringTrim, entries, kebabCaseToCamelCase, isUndefined, HTML_NAMESPACE, isVoidElement, isBooleanAttribute, DEFAULT_SSR_MODE, generateCustomElementTagName } from '@lwc/shared';
|
|
5
5
|
import { generate } from 'astring';
|
|
@@ -2711,5 +2711,5 @@ function compileTemplateForSSR(src, filename, options, mode = DEFAULT_SSR_MODE)
|
|
|
2711
2711
|
}
|
|
2712
2712
|
|
|
2713
2713
|
export { compileComponentForSSR, compileTemplateForSSR };
|
|
2714
|
-
/** version: 8.
|
|
2714
|
+
/** version: 8.28.0 */
|
|
2715
2715
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
|
|
5
5
|
],
|
|
6
6
|
"name": "@lwc/ssr-compiler",
|
|
7
|
-
"version": "8.
|
|
7
|
+
"version": "8.28.0",
|
|
8
8
|
"description": "Compile component for use during server-side rendering",
|
|
9
9
|
"keywords": [
|
|
10
10
|
"compiler",
|
|
@@ -49,17 +49,17 @@
|
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@babel/types": "7.28.5",
|
|
52
|
-
"@lwc/errors": "8.
|
|
53
|
-
"@lwc/shared": "8.
|
|
54
|
-
"@lwc/template-compiler": "8.
|
|
52
|
+
"@lwc/errors": "8.28.0",
|
|
53
|
+
"@lwc/shared": "8.28.0",
|
|
54
|
+
"@lwc/template-compiler": "8.28.0",
|
|
55
55
|
"acorn": "8.15.0",
|
|
56
56
|
"astring": "^1.9.0",
|
|
57
57
|
"estree-toolkit": "^1.7.13",
|
|
58
|
-
"immer": "^11.
|
|
58
|
+
"immer": "^11.1.3",
|
|
59
59
|
"meriyah": "^5.0.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@lwc/babel-plugin-component": "8.
|
|
62
|
+
"@lwc/babel-plugin-component": "8.28.0",
|
|
63
63
|
"@types/estree": "^1.0.8"
|
|
64
64
|
}
|
|
65
65
|
}
|