@compiiile/compiiile 2.18.5 → 2.18.7
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/.compiiile/components.d.ts +23 -0
- package/.compiiile/public/stonk.jpeg +0 -0
- package/.compiiile/src/stonk.jpeg +0 -0
- package/.compiiile/src/style/code-theme.css +2 -2
- package/.compiiile/src/style/variables.css +1 -1
- package/.compiiile/stonk.jpeg +0 -0
- package/.compiiileignore +0 -0
- package/bin/config.js +2 -1
- package/compiiile.config.js +19 -1
- package/package.json +8 -8
- package/stonk.jpeg +0 -0
- package/test/stonk.jpeg +0 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// @ts-nocheck
|
|
3
|
+
// Generated by unplugin-vue-components
|
|
4
|
+
// Read more: https://github.com/vuejs/core/pull/3399
|
|
5
|
+
export {}
|
|
6
|
+
|
|
7
|
+
/* prettier-ignore */
|
|
8
|
+
declare module 'vue' {
|
|
9
|
+
export interface GlobalComponents {
|
|
10
|
+
ClientScript: typeof import('./src/components/ClientScript.vue')['default']
|
|
11
|
+
ContentWrapper: typeof import('./src/components/ContentWrapper.vue')['default']
|
|
12
|
+
FilesTree: typeof import('./src/components/layout/navBar/FilesTree.vue')['default']
|
|
13
|
+
HamburgerButton: typeof import('./src/components/layout/HamburgerButton.vue')['default']
|
|
14
|
+
NavBar: typeof import('./src/components/layout/navBar/NavBar.vue')['default']
|
|
15
|
+
NavListItem: typeof import('./src/components/layout/navBar/NavListItem.vue')['default']
|
|
16
|
+
SearchBar: typeof import('./src/components/searchBar/SearchBar.vue')['default']
|
|
17
|
+
SearchResult: typeof import('./src/components/searchBar/SearchResult.vue')['default']
|
|
18
|
+
SlidesContent: typeof import('./src/components/SlidesContent.vue')['default']
|
|
19
|
+
TableOfContent: typeof import('./src/components/TableOfContent.vue')['default']
|
|
20
|
+
ThemeSwitcher: typeof import('./src/components/layout/ThemeSwitcher.vue')['default']
|
|
21
|
+
TopBar: typeof import('./src/components/layout/TopBar.vue')['default']
|
|
22
|
+
}
|
|
23
|
+
}
|
|
Binary file
|
|
Binary file
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
border-radius: 8px;
|
|
33
33
|
line-height: 1.3rem;
|
|
34
34
|
position: relative;
|
|
35
|
-
font-family:
|
|
35
|
+
font-family: var(--monospace);
|
|
36
36
|
|
|
37
37
|
code {
|
|
38
|
-
font-family:
|
|
38
|
+
font-family: var(--monospace);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
--top-bar-height: 60px;
|
|
8
8
|
--ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
|
|
9
9
|
--monospace: "JetBrains Mono Variable", monospace;
|
|
10
|
-
--r-code-font:
|
|
10
|
+
--r-code-font: var(--monospace);
|
|
11
11
|
--heading-font: "Archivo Variable", sans-serif;
|
|
12
12
|
--default-font: "DM Sans Variable", sans-serif;
|
|
13
13
|
|
|
Binary file
|
package/.compiiileignore
ADDED
|
File without changes
|
package/bin/config.js
CHANGED
package/compiiile.config.js
CHANGED
|
@@ -2,5 +2,23 @@ export default {
|
|
|
2
2
|
title: "Compiiile",
|
|
3
3
|
description:
|
|
4
4
|
"Compiiile is the most convenient way to render a folder containing markdown files. Previewing and searching markdown files has never been that easy (it's really just a command away !)",
|
|
5
|
-
siteUrl: "https://compiiile.me"
|
|
5
|
+
siteUrl: "https://compiiile.me",
|
|
6
|
+
integrations: [
|
|
7
|
+
{
|
|
8
|
+
name: "umami",
|
|
9
|
+
hooks: {
|
|
10
|
+
"astro:config:setup": ({injectScript}) => {
|
|
11
|
+
if(process.env.ANALYTICS_URL && process.env.ANALYTICS_ID){
|
|
12
|
+
injectScript('head-inline', `
|
|
13
|
+
const script = document.createElement("script")
|
|
14
|
+
script.setAttribute("src", "${process.env.ANALYTICS_URL}")
|
|
15
|
+
script.dataset.websiteId = "${process.env.ANALYTICS_ID}"
|
|
16
|
+
script.setAttribute("defer", "")
|
|
17
|
+
document.head.appendChild(script)
|
|
18
|
+
`);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
]
|
|
6
24
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@compiiile/compiiile",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "2.18.
|
|
4
|
+
"version": "2.18.7",
|
|
5
5
|
"description": "The most convenient way to render a folder containing markdown files. Previewing and searching markdown files has never been that easy.",
|
|
6
6
|
"author": "AlbanCrepel <alban.crepel@gmail.com>",
|
|
7
7
|
"license": "GPL-3.0-only",
|
|
@@ -22,20 +22,20 @@
|
|
|
22
22
|
"url": "git+https://github.com/compiiile/compiiile.git"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@astrojs/mdx": "^4.3.
|
|
26
|
-
"@astrojs/sitemap": "^3.
|
|
27
|
-
"@astrojs/vue": "^5.1.
|
|
25
|
+
"@astrojs/mdx": "^4.3.8",
|
|
26
|
+
"@astrojs/sitemap": "^3.6.0",
|
|
27
|
+
"@astrojs/vue": "^5.1.1",
|
|
28
28
|
"@babel/core": "^7.28.0",
|
|
29
29
|
"@babel/eslint-parser": "^7.28.0",
|
|
30
30
|
"@babel/parser": "^7.28.0",
|
|
31
31
|
"@compiiile/compiiile-print": "^1.0.6",
|
|
32
|
-
"@compiiile/compiiile-pro": "^1.3.
|
|
32
|
+
"@compiiile/compiiile-pro": "^1.3.2",
|
|
33
33
|
"@eslint/compat": "^1.3.1",
|
|
34
34
|
"@eslint/js": "^9.34.0",
|
|
35
35
|
"@fontsource-variable/archivo": "^5.2.6",
|
|
36
36
|
"@fontsource-variable/dm-sans": "^5.2.6",
|
|
37
37
|
"@fontsource-variable/jetbrains-mono": "^5.2.6",
|
|
38
|
-
"astro": "
|
|
38
|
+
"astro": "5.14.1",
|
|
39
39
|
"astro-seo": "^0.8.4",
|
|
40
40
|
"c12": "^2.0.4",
|
|
41
41
|
"entities": "^6.0.1",
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
"typescript": "^5.8.3",
|
|
60
60
|
"uuid": "^11.1.0",
|
|
61
61
|
"vfile-matter": "^5.0.1",
|
|
62
|
-
"vite": "^6.
|
|
63
|
-
"vue": "^3.5.
|
|
62
|
+
"vite": "^6.4.1",
|
|
63
|
+
"vue": "^3.5.22",
|
|
64
64
|
"yargs": "^18.0.0",
|
|
65
65
|
"zod": "^3.25.76"
|
|
66
66
|
},
|
package/stonk.jpeg
ADDED
|
Binary file
|
package/test/stonk.jpeg
ADDED
|
Binary file
|