@rooted/markdown 1.0.0-alpha.1 → 1.0.0-alpha.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.
- package/dist/markdown.d.mts +3 -3
- package/dist/vite.d.mts +3 -3
- package/package.json +6 -6
package/dist/markdown.d.mts
CHANGED
|
@@ -65,7 +65,7 @@ type MarkdownOptions = {
|
|
|
65
65
|
* you'd treat a `<script>` tag: fine for content you control (files in your
|
|
66
66
|
* repo, your own CMS), not for anything a visitor can influence.
|
|
67
67
|
*/
|
|
68
|
-
declare const Markdown: import("@rooted/components").Component<MarkdownOptions>;
|
|
68
|
+
export declare const Markdown: import("@rooted/components").Component<MarkdownOptions>;
|
|
69
69
|
//#endregion
|
|
70
|
-
export {
|
|
71
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,
|
|
70
|
+
export type { MarkdownModule, MarkdownOptions, MarkdownSource };
|
|
71
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFya2Rvd24uZC5tdHMiLCJuYW1lcyI6W10sInNvdXJjZXMiOlsiLi4vc3JjL21hcmtkb3duLm10cyJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7S0FVWTs7RUFFWCxhQUFhOztFQUViOzs7Ozs7Ozs7O0tBV1c7RUFBbUI7Ozs7O0tBS25COztFQUVYLFFBQVE7O0VBRVIsWUFBWTs7RUFFWixVQUFVOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7cUJBa0NFLHVDQUFRLFVBQUEifQ==
|
package/dist/vite.d.mts
CHANGED
|
@@ -37,7 +37,7 @@ type MarkdownPluginOptions = {
|
|
|
37
37
|
* Reference `@rooted/markdown/vite/types` from your env declarations so
|
|
38
38
|
* TypeScript knows what a `.md` import is.
|
|
39
39
|
*/
|
|
40
|
-
declare function rootedMarkdown(options?: MarkdownPluginOptions): Plugin;
|
|
40
|
+
export declare function rootedMarkdown(options?: MarkdownPluginOptions): Plugin;
|
|
41
41
|
//#endregion
|
|
42
|
-
export {
|
|
43
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,
|
|
42
|
+
export type { MarkdownPluginOptions };
|
|
43
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidml0ZS5kLm10cyIsIm5hbWVzIjpbXSwic291cmNlcyI6WyIuLi9wbHVnaW5zL21hcmtkb3duLm10cyJdLCJtYXBwaW5ncyI6Ijs7Ozs7S0FTWTs7Ozs7RUFLWDs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7d0JBcUNlLGVBQWUsVUFBUyx3QkFBNkIifQ==
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rooted/markdown",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.3",
|
|
4
4
|
"description": "Markdown content for the rooted framework",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"markdown",
|
|
@@ -60,17 +60,17 @@
|
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"gray-matter": "^4.0.3",
|
|
62
62
|
"html-minifier-terser": "^7.2.0",
|
|
63
|
-
"marked": "^18.0.
|
|
63
|
+
"marked": "^18.0.11"
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
|
66
|
-
"@rooted/components": "1.0.0-alpha.
|
|
66
|
+
"@rooted/components": "1.0.0-alpha.15",
|
|
67
67
|
"vite": ">=8.0.1"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@rooted/components": "1.0.0-alpha.
|
|
70
|
+
"@rooted/components": "1.0.0-alpha.15",
|
|
71
71
|
"@rooted/development": "workspace:*",
|
|
72
72
|
"@types/html-minifier-terser": "^7.0.2",
|
|
73
|
-
"@types/node": "^26.
|
|
74
|
-
"vite": "^8.2.
|
|
73
|
+
"@types/node": "^26.4.1",
|
|
74
|
+
"vite": "^8.2.2"
|
|
75
75
|
}
|
|
76
76
|
}
|