@digilogiclabs/create-saas-app 2.5.1 → 2.6.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 +23 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/cli/commands/create.d.ts +4 -0
- package/dist/cli/commands/create.d.ts.map +1 -1
- package/dist/cli/commands/create.js +2 -0
- package/dist/cli/commands/create.js.map +1 -1
- package/dist/cli/index.d.ts.map +1 -1
- package/dist/cli/index.js +2 -0
- package/dist/cli/index.js.map +1 -1
- package/dist/generators/template-generator.d.ts +2 -0
- package/dist/generators/template-generator.d.ts.map +1 -1
- package/dist/generators/template-generator.js +32 -0
- package/dist/generators/template-generator.js.map +1 -1
- package/dist/templates/shared/design/web/src/config/design.config.ts +51 -0
- package/dist/templates/shared/landing/web/src/components/LandingPage.tsx +97 -0
- package/dist/templates/shared/landing/web/src/components/PricingSection.tsx +80 -0
- package/dist/templates/shared/quality/web/lighthouserc.js +41 -0
- package/dist/templates/shared/quality/web/src/__tests__/accessibility.test.tsx +140 -0
- package/dist/templates/shared/security/web/lib/api-security.ts +76 -243
- package/package.json +1 -1
- package/src/templates/shared/design/web/src/config/design.config.ts +51 -0
- package/src/templates/shared/landing/web/src/components/LandingPage.tsx +97 -0
- package/src/templates/shared/landing/web/src/components/PricingSection.tsx +80 -0
- package/src/templates/shared/quality/web/lighthouserc.js +41 -0
- package/src/templates/shared/quality/web/src/__tests__/accessibility.test.tsx +140 -0
- package/src/templates/shared/security/web/lib/api-security.ts +76 -243
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @digilogiclabs/create-saas-app
|
|
2
2
|
|
|
3
|
+
## 2.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- feat(cli): design system audit — design config, landing templates, quality tooling
|
|
8
|
+
|
|
9
|
+
**New CLI Flags:**
|
|
10
|
+
- `--landing-style <style>` — product, editorial, or minimal landing page style
|
|
11
|
+
- `--motion <preset>` — calm, standard, or reduced animation preset
|
|
12
|
+
|
|
13
|
+
**New Shared Templates:**
|
|
14
|
+
- `design.config.ts` — centralized design configuration (theme, accent, density, motion, landingStyle)
|
|
15
|
+
- `LandingPage.tsx` — design-system-aligned landing page using PageShell, FeatureGrid, Hero, CTACluster
|
|
16
|
+
- `PricingSection.tsx` — 3-tier pricing section using PricingHero with billing toggle
|
|
17
|
+
- `lighthouserc.js` — Lighthouse CI configuration with Core Web Vitals budgets
|
|
18
|
+
- `accessibility.test.tsx` — axe-core + heading hierarchy + form label + touch target tests
|
|
19
|
+
|
|
20
|
+
**Generator Updates:**
|
|
21
|
+
- Design config copied for all web templates
|
|
22
|
+
- Quality tooling copied for all web templates
|
|
23
|
+
- Landing components copied for starter+ tiers (with payments)
|
|
24
|
+
- `landingStyle` and `motion` wired into TemplateContext
|
|
25
|
+
|
|
3
26
|
## 2.5.1
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|