@lightspeed/crane 3.0.0 → 3.2.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/CHANGELOG.md +33 -0
- package/UPGRADE.md +1 -1
- package/dist/cli.mjs +25 -25
- package/package.json +2 -2
- package/template/preview/shared/api-routes.ts +5 -5
- package/template/preview/shared/preview.ts +61 -4
- package/template/preview/shared/utils.ts +11 -1
- package/template/sections/example-section/settings/design.ts +8 -0
- package/template/sections/example-section/settings/layout.ts +3 -0
- package/template/sections/example-section/settings/translations.ts +13 -0
- package/template/sections/example-section/showcases/1.ts +3 -0
- package/template/sections/example-section/showcases/2.ts +3 -0
- package/template/sections/example-section/showcases/3.ts +3 -0
- package/template/sections/example-section/showcases/translations.ts +9 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.2.0 - 2026-03-17
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Add new 'ACCORDION' design editor type support.
|
|
8
|
+
- Add `layoutId` and `showcaseId` validation to their respective configuration files.
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Use terser minifier for SSR builds to prevent variable name collisions with Lambda runtime globals
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @lightspeed/crane-api@2.2.0
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- Fix SSR rendering issues for Windows in 'preview' mode.
|
|
19
|
+
|
|
20
|
+
## 3.1.0 - 2026-03-12
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- Added `INFO` design editor type for displaying informational content with an optional CTA button
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
|
|
28
|
+
- Batch setting and showcase configuration build for faster 'build' execution.
|
|
29
|
+
- Updated dependencies
|
|
30
|
+
- @lightspeed/crane-api@2.1.0
|
|
31
|
+
|
|
32
|
+
### Fixed
|
|
33
|
+
|
|
34
|
+
- Update block name from showcases in tile API response.
|
|
35
|
+
|
|
3
36
|
## 3.0.0 - 2026-02-25
|
|
4
37
|
|
|
5
38
|
### Added
|