@docsector/docsector-reader 0.5.0 → 0.5.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/bin/docsector.js +14 -2
- package/package.json +1 -1
package/bin/docsector.js
CHANGED
|
@@ -23,7 +23,7 @@ const packageRoot = resolve(__dirname, '..')
|
|
|
23
23
|
const args = process.argv.slice(2)
|
|
24
24
|
const command = args[0]
|
|
25
25
|
|
|
26
|
-
const VERSION = '0.
|
|
26
|
+
const VERSION = '0.5.1'
|
|
27
27
|
|
|
28
28
|
const HELP = `
|
|
29
29
|
Docsector Reader v${VERSION}
|
|
@@ -71,7 +71,7 @@ function getTemplatePackageJson (name) {
|
|
|
71
71
|
serve: 'docsector serve'
|
|
72
72
|
},
|
|
73
73
|
dependencies: {
|
|
74
|
-
'@docsector/docsector-reader': '^0.
|
|
74
|
+
'@docsector/docsector-reader': '^0.5.1',
|
|
75
75
|
'@quasar/extras': '^1.16.12',
|
|
76
76
|
'quasar': '^2.16.6',
|
|
77
77
|
'vue': '^3.5.13',
|
|
@@ -640,6 +640,18 @@ const TEMPLATE_INDEX_HTML = `\
|
|
|
640
640
|
<meta name="msapplication-tap-highlight" content="no">
|
|
641
641
|
<meta name="viewport" content="user-scalable=yes, initial-scale=1, maximum-scale=5, minimum-scale=1, width=device-width">
|
|
642
642
|
|
|
643
|
+
<!-- Open Graph -->
|
|
644
|
+
<meta property="og:title" content="<%= productName %>">
|
|
645
|
+
<meta property="og:description" content="<%= productDescription %>">
|
|
646
|
+
<meta property="og:type" content="website">
|
|
647
|
+
<meta property="og:image" content="/images/logo.png">
|
|
648
|
+
|
|
649
|
+
<!-- Twitter Card -->
|
|
650
|
+
<meta name="twitter:card" content="summary_large_image">
|
|
651
|
+
<meta name="twitter:title" content="<%= productName %>">
|
|
652
|
+
<meta name="twitter:description" content="<%= productDescription %>">
|
|
653
|
+
<meta name="twitter:image" content="/images/logo.png">
|
|
654
|
+
|
|
643
655
|
<link rel="icon" type="image/png" sizes="128x128" href="images/icons/favicon-128.png">
|
|
644
656
|
<link rel="icon" type="image/png" sizes="32x32" href="images/icons/favicon-32.png">
|
|
645
657
|
<link rel="icon" type="image/png" sizes="16x16" href="images/icons/favicon-16.png">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@docsector/docsector-reader",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "A documentation rendering engine built with Vue 3, Quasar v2 and Vite. Transform Markdown into beautiful, navigable documentation sites.",
|
|
5
5
|
"productName": "Docsector Reader",
|
|
6
6
|
"author": "Rodrigo de Araujo Vieira",
|