@aureuma/svelta 0.4.0 → 0.4.1

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aureuma/svelta",
3
3
  "private": false,
4
- "version": "0.4.0",
4
+ "version": "0.4.1",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "packages/core/dist",
@@ -48,9 +48,10 @@
48
48
  "prepare": "svelte-kit sync || echo ''",
49
49
  "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
50
50
  "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
51
- "test:server": "npm run build:core && node --test tests/raw-docs.test.mjs",
52
- "test:e2e": "playwright test",
53
- "test": "npm run check && npm run test:server && npm run test:e2e",
51
+ "test:guard": "node scripts/ensure-ci.mjs",
52
+ "test:server": "npm run test:guard && npm run build:core && node --test tests/raw-docs.test.mjs",
53
+ "test:e2e": "npm run test:guard && playwright test",
54
+ "test": "npm run test:guard && npm run check && npm run test:server && npm run test:e2e",
54
55
  "changeset": "changeset",
55
56
  "version-packages": "changeset version",
56
57
  "release": "changeset publish",
@@ -35,15 +35,13 @@ export const DEFAULT_BLOG_PATTERN_CONFIG = {
35
35
  kind: 'blog',
36
36
  brandName: 'svelta',
37
37
  title: 'Editorial publishing with modern feed ergonomics.',
38
- description: 'Publish markdown-driven updates with taxonomy, progressive pagination, author attribution, and RSS delivery.',
38
+ description: 'Publish markdown-driven updates with in-feed tag filtering, continuous infinite loading, author attribution, and RSS delivery.',
39
39
  pageSize: 8,
40
40
  maxPageSize: 24,
41
- infiniteScroll: true,
42
41
  showRss: true,
43
42
  navigation: {
44
43
  header: [
45
44
  { label: 'Blog', href: '/blog' },
46
- { label: 'Tags', href: '/blog/tags' },
47
45
  { label: 'Archive', href: '/blog/archive' }
48
46
  ],
49
47
  footer: [
@@ -50,7 +50,6 @@ export type SveltaBlogPatternConfig = {
50
50
  description: string;
51
51
  pageSize: number;
52
52
  maxPageSize: number;
53
- infiniteScroll: boolean;
54
53
  showRss: boolean;
55
54
  navigation: {
56
55
  header: SveltaNavItem[];