@docsector/docsector-reader 0.10.0 → 0.10.2

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 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.10.0'
26
+ const VERSION = '0.10.2'
27
27
 
28
28
  const HELP = `
29
29
  Docsector Reader v${VERSION}
@@ -1,3 +1,5 @@
1
+ import pkg from './package.json' with { type: 'json' }
2
+
1
3
  /**
2
4
  * Docsector Reader Configuration
3
5
  *
@@ -13,7 +15,7 @@ export default {
13
15
  // Project name displayed in the sidebar
14
16
  name: 'Docsector Reader',
15
17
  // Version label displayed next to the name
16
- version: 'v0.0.1'
18
+ version: 'v' + pkg.version
17
19
  },
18
20
 
19
21
  // @ Links
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docsector/docsector-reader",
3
- "version": "0.10.0",
3
+ "version": "0.10.2",
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",