fuma 0.0.2 → 0.0.4

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/README.md CHANGED
@@ -1,3 +1,18 @@
1
1
  # fuma
2
2
 
3
3
  My fullstake material build with sveltekit, daisyui, zod and more ...
4
+
5
+ ## Fast setup
6
+
7
+ ```sh
8
+ export project="myproject"
9
+ pn create svelte@latest $project
10
+ cd $project
11
+ pn i fuma
12
+ px svelte-add@latest tailwindcss
13
+ pn i -D daisyui@latest
14
+ sed -i "s/plugins: \[\]/plugins: \[require('daisyui')\],\n\tdaisyui: {\n\t\tlogs: false\n\t}\n/g" tailwind.config.cjs
15
+
16
+
17
+ git init && git add -A && git commit -m "Initial commit"
18
+ ```
@@ -1,6 +1,5 @@
1
1
  /// <reference types="svelte" />
2
2
  import type { SuggestionOptions } from '@tiptap/suggestion';
3
- import '$lib/ui/menu/dropdown.css';
4
3
  export type SuggestionItem = {
5
4
  id: string;
6
5
  label: string;
@@ -1,7 +1,6 @@
1
1
  import { writable, get } from 'svelte/store';
2
2
  import { tippy } from '../../../utils/tippy.js';
3
3
  import SuggesionList from './SuggesionList.svelte';
4
- import '$lib/ui/menu/dropdown.css';
5
4
  export let suggestionItems = writable([]);
6
5
  export const suggestion = {
7
6
  items: ({ query }) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fuma",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "My fullstake material build with sveltekit, daisyui, zod and more",
5
5
  "author": {
6
6
  "name": "Jonas Voisard",
@@ -25,7 +25,6 @@
25
25
  "svelte": "^4.0.0"
26
26
  },
27
27
  "devDependencies": {
28
- "@mdi/js": "^7.4.47",
29
28
  "@sveltejs/adapter-auto": "^3.0.0",
30
29
  "@sveltejs/kit": "^2.5.6",
31
30
  "@sveltejs/package": "^2.0.0",
@@ -54,6 +53,7 @@
54
53
  "vitest": "^1.2.0"
55
54
  },
56
55
  "dependencies": {
56
+ "@mdi/js": "^7.4.47",
57
57
  "@tiptap/core": "^2.3.0",
58
58
  "@tiptap/extension-color": "^2.3.0",
59
59
  "@tiptap/extension-highlight": "^2.3.0",