@lickle/docs 0.0.0-dev.10 → 0.0.0-dev.3

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.
Files changed (49) hide show
  1. package/dist/cli/cmd/dev.d.ts +0 -5
  2. package/dist/cli/cmd/dev.d.ts.map +1 -1
  3. package/dist/cli/cmd/dev.js +0 -14
  4. package/dist/cli/cmd/dev.js.map +1 -1
  5. package/dist/cli/index.d.ts +0 -4
  6. package/dist/cli/index.d.ts.map +1 -1
  7. package/dist/cli/vite/index.d.ts.map +1 -1
  8. package/dist/cli/vite/index.js +0 -1
  9. package/dist/cli/vite/index.js.map +1 -1
  10. package/dist/ui/App.d.ts.map +1 -1
  11. package/dist/ui/App.jsx +3 -4
  12. package/dist/ui/App.jsx.map +1 -1
  13. package/dist/ui/components/Header.d.ts.map +1 -1
  14. package/dist/ui/components/Header.jsx +1 -2
  15. package/dist/ui/components/Header.jsx.map +1 -1
  16. package/dist/ui/context/markup/markdown.d.ts.map +1 -1
  17. package/dist/ui/context/markup/markdown.js +1 -2
  18. package/dist/ui/context/markup/markdown.js.map +1 -1
  19. package/dist/ui/context/project/indexed.js +1 -1
  20. package/dist/ui/context/project/indexed.js.map +1 -1
  21. package/dist/ui/hooks/index.d.ts.map +1 -1
  22. package/dist/ui/hooks/index.js +1 -2
  23. package/dist/ui/hooks/index.js.map +1 -1
  24. package/dist/ui/util/markdown.d.ts.map +1 -1
  25. package/dist/ui/util/markdown.js +1 -2
  26. package/dist/ui/util/markdown.js.map +1 -1
  27. package/package.json +4 -5
  28. package/src/cli/cmd/dev.ts +0 -15
  29. package/src/cli/vite/index.ts +0 -1
  30. package/src/ui/App.tsx +3 -4
  31. package/src/ui/components/Header.tsx +1 -2
  32. package/src/ui/context/markup/markdown.ts +1 -2
  33. package/src/ui/context/project/indexed.ts +1 -1
  34. package/src/ui/hooks/index.ts +1 -2
  35. package/src/ui/util/markdown.ts +1 -3
  36. package/client/index.html +0 -27
  37. package/client/index.tsx +0 -22
  38. package/client/public/apple-touch-icon.png +0 -0
  39. package/client/public/favicon-96x96.png +0 -0
  40. package/client/public/favicon.ico +0 -0
  41. package/client/public/favicon.svg +0 -1
  42. package/client/public/site.webmanifest +0 -21
  43. package/client/public/web-app-manifest-192x192.png +0 -0
  44. package/client/public/web-app-manifest-512x512.png +0 -0
  45. package/dist/ui/util/base.d.ts +0 -14
  46. package/dist/ui/util/base.d.ts.map +0 -1
  47. package/dist/ui/util/base.js +0 -15
  48. package/dist/ui/util/base.js.map +0 -1
  49. package/src/ui/util/base.ts +0 -16
@@ -1,21 +0,0 @@
1
- {
2
- "name": "lickle docs",
3
- "short_name": "docs",
4
- "icons": [
5
- {
6
- "src": "/web-app-manifest-192x192.png",
7
- "sizes": "192x192",
8
- "type": "image/png",
9
- "purpose": "maskable"
10
- },
11
- {
12
- "src": "/web-app-manifest-512x512.png",
13
- "sizes": "512x512",
14
- "type": "image/png",
15
- "purpose": "maskable"
16
- }
17
- ],
18
- "theme_color": "#ffffff",
19
- "background_color": "#ffffff",
20
- "display": "standalone"
21
- }
@@ -1,14 +0,0 @@
1
- /**
2
- * Base path the docs are served under, taken from Vite's `base` (exposed as
3
- * `import.meta.env.BASE_URL`). Normalised without a trailing slash, so `''`
4
- * means the site lives at the root.
5
- *
6
- * The router (`<Router base>`) already rewrites `<A>` hrefs and strips the
7
- * prefix from `useLocation().pathname`, so component links stay app-absolute
8
- * (`/slug`). Use {@link withBase} only for URLs that bypass the router: raw
9
- * HTML anchors and static assets.
10
- */
11
- export declare const basePath: string;
12
- /** Resolve an app-absolute path (`/foo`) or asset name (`icons.svg`) against {@link basePath}. */
13
- export declare const withBase: (path: string) => string;
14
- //# sourceMappingURL=base.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../src/ui/util/base.ts"],"names":[],"mappings":"AAEA;;;;;;;;;GASG;AACH,eAAO,MAAM,QAAQ,EAAE,MAAqD,CAAA;AAE5E,kGAAkG;AAClG,eAAO,MAAM,QAAQ,GAAI,MAAM,MAAM,KAAG,MAAmD,CAAA"}
@@ -1,15 +0,0 @@
1
- /// <reference types="vite/client" />
2
- /**
3
- * Base path the docs are served under, taken from Vite's `base` (exposed as
4
- * `import.meta.env.BASE_URL`). Normalised without a trailing slash, so `''`
5
- * means the site lives at the root.
6
- *
7
- * The router (`<Router base>`) already rewrites `<A>` hrefs and strips the
8
- * prefix from `useLocation().pathname`, so component links stay app-absolute
9
- * (`/slug`). Use {@link withBase} only for URLs that bypass the router: raw
10
- * HTML anchors and static assets.
11
- */
12
- export const basePath = import.meta.env.BASE_URL.replace(/\/+$/, '');
13
- /** Resolve an app-absolute path (`/foo`) or asset name (`icons.svg`) against {@link basePath}. */
14
- export const withBase = (path) => `${basePath}/${path.replace(/^\/+/, '')}`;
15
- //# sourceMappingURL=base.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"base.js","sourceRoot":"","sources":["../../../src/ui/util/base.ts"],"names":[],"mappings":"AAAA,qCAAqC;AAErC;;;;;;;;;GASG;AACH,MAAM,CAAC,MAAM,QAAQ,GAAW,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,CAAA;AAE5E,kGAAkG;AAClG,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC,IAAY,EAAU,EAAE,CAAC,GAAG,QAAQ,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE,CAAA"}
@@ -1,16 +0,0 @@
1
- /// <reference types="vite/client" />
2
-
3
- /**
4
- * Base path the docs are served under, taken from Vite's `base` (exposed as
5
- * `import.meta.env.BASE_URL`). Normalised without a trailing slash, so `''`
6
- * means the site lives at the root.
7
- *
8
- * The router (`<Router base>`) already rewrites `<A>` hrefs and strips the
9
- * prefix from `useLocation().pathname`, so component links stay app-absolute
10
- * (`/slug`). Use {@link withBase} only for URLs that bypass the router: raw
11
- * HTML anchors and static assets.
12
- */
13
- export const basePath: string = import.meta.env.BASE_URL.replace(/\/+$/, '')
14
-
15
- /** Resolve an app-absolute path (`/foo`) or asset name (`icons.svg`) against {@link basePath}. */
16
- export const withBase = (path: string): string => `${basePath}/${path.replace(/^\/+/, '')}`