create-svelte-docsmith 0.2.0 → 0.2.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/index.js CHANGED
@@ -8,8 +8,8 @@ import * as p from '@clack/prompts';
8
8
  const templateDir = fileURLToPath(new URL('./template', import.meta.url));
9
9
 
10
10
  const PRESETS = [
11
- { value: 'default', label: 'Default (Tangerine)' },
12
- { value: 'darkmatter', label: 'Darkmatter' },
11
+ { value: 'default', label: 'Default (Darkmatter)' },
12
+ { value: 'tangerine', label: 'Tangerine' },
13
13
  { value: 'amethyst', label: 'Amethyst' },
14
14
  { value: 'graphite', label: 'Graphite' },
15
15
  { value: 'evergreen', label: 'Evergreen' },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-svelte-docsmith",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Scaffold a documentation site powered by Svelte DocSmith.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -10,7 +10,7 @@
10
10
  "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json"
11
11
  },
12
12
  "dependencies": {
13
- "svelte-docsmith": "^0.5.1"
13
+ "svelte-docsmith": "^0.8.0"
14
14
  },
15
15
  "devDependencies": {
16
16
  "@sveltejs/adapter-auto": "^7.0.1",
@@ -5,7 +5,8 @@
5
5
  * typography and animation plugins. */
6
6
  @import 'svelte-docsmith/theme.css';
7
7
 
8
- /* Prefer a different look? Import a preset after theme.css and it wins:
9
- * @import 'svelte-docsmith/themes/darkmatter.css';
10
- * Available: darkmatter, tangerine, amethyst, graphite, evergreen, rose, ocean,
11
- * nord, claude, bubblegum, mono. Or override individual tokens yourself. */
8
+ /* Darkmatter is the default, already applied by theme.css. Prefer a different
9
+ * look? Import a preset after theme.css and it wins:
10
+ * @import 'svelte-docsmith/themes/amethyst.css';
11
+ * Available: tangerine, amethyst, graphite, evergreen, rose, ocean, nord,
12
+ * claude, bubblegum, mono. Or override individual tokens yourself. */