@md-plugins/quasar-app-extension-q-press 0.1.0-alpha.12 → 0.1.0-alpha.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@md-plugins/quasar-app-extension-q-press",
3
- "version": "0.1.0-alpha.12",
3
+ "version": "0.1.0-alpha.14",
4
4
  "description": "QPress - The Ultimate Markdown Solution for Quasar Framework",
5
5
  "author": "hawkeye64 <galbraith64@gmail.com>",
6
6
  "keywords": [
@@ -26,26 +26,24 @@
26
26
  "npm": ">= 5.6.0",
27
27
  "yarn": ">= 1.6.0"
28
28
  },
29
- "dependencies": {
30
- "@md-plugins/md-plugin-blockquote": "0.1.0-alpha.12",
31
- "@md-plugins/md-plugin-containers": "0.1.0-alpha.12",
32
- "@md-plugins/md-plugin-headers": "0.1.0-alpha.12",
33
- "@md-plugins/md-plugin-codeblocks": "0.1.0-alpha.12",
34
- "@md-plugins/md-plugin-image": "0.1.0-alpha.12",
35
- "@md-plugins/md-plugin-frontmatter": "0.1.0-alpha.12",
36
- "@md-plugins/md-plugin-inlinecode": "0.1.0-alpha.12",
37
- "@md-plugins/md-plugin-table": "0.1.0-alpha.12",
38
- "@md-plugins/md-plugin-imports": "0.1.0-alpha.12",
39
- "@md-plugins/md-plugin-title": "0.1.0-alpha.12",
40
- "@md-plugins/vite-md-plugin": "0.1.0-alpha.12",
41
- "@md-plugins/md-plugin-link": "0.1.0-alpha.12",
42
- "@md-plugins/shared": "0.1.0-alpha.12"
43
- },
44
29
  "devDependencies": {
45
30
  "@types/markdown-it": "^14.1.2",
46
31
  "fs-extra": "^11.2.0",
47
32
  "markdown-it": "^14.1.0",
48
- "vite": "^6.0.7"
33
+ "vite": "^6.0.7",
34
+ "@md-plugins/md-plugin-containers": "0.1.0-alpha.14",
35
+ "@md-plugins/md-plugin-frontmatter": "0.1.0-alpha.14",
36
+ "@md-plugins/md-plugin-headers": "0.1.0-alpha.14",
37
+ "@md-plugins/md-plugin-codeblocks": "0.1.0-alpha.14",
38
+ "@md-plugins/md-plugin-blockquote": "0.1.0-alpha.14",
39
+ "@md-plugins/md-plugin-image": "0.1.0-alpha.14",
40
+ "@md-plugins/md-plugin-imports": "0.1.0-alpha.14",
41
+ "@md-plugins/md-plugin-inlinecode": "0.1.0-alpha.14",
42
+ "@md-plugins/md-plugin-link": "0.1.0-alpha.14",
43
+ "@md-plugins/shared": "0.1.0-alpha.14",
44
+ "@md-plugins/vite-md-plugin": "0.1.0-alpha.14",
45
+ "@md-plugins/md-plugin-table": "0.1.0-alpha.14",
46
+ "@md-plugins/md-plugin-title": "0.1.0-alpha.14"
49
47
  },
50
48
  "peerDependencies": {
51
49
  "markdown-it": "^14.1.0"
@@ -231,7 +231,7 @@ Update your `App.vue`:
231
231
  If you don't have a `.prettierignore` file, create one in the root of your project and add the following:
232
232
 
233
233
  ```bash
234
- - Ignore all Markdown files:
234
+ # Ignore all Markdown files:
235
235
  \*_/_.md
236
236
  ```
237
237
 
package/old/prompts.js DELETED
@@ -1,44 +0,0 @@
1
- /**
2
- * Quasar App Extension prompts script
3
- *
4
- * Docs: https://quasar.dev/app-extensions/development-guide/prompts-api
5
- *
6
- * Inquirer prompts
7
- * (answers are available as "api.prompts" in the other scripts)
8
- * https://www.npmjs.com/package/inquirer#question
9
- *
10
- * Example:
11
-
12
- return [
13
- {
14
- name: 'name',
15
- type: 'input',
16
- required: true,
17
- message: 'Quasar CLI Extension name (without prefix)',
18
- },
19
- {
20
- name: 'preset',
21
- type: 'checkbox',
22
- message: 'Check the features needed for your project:',
23
- choices: [
24
- {
25
- name: 'Install script',
26
- value: 'install'
27
- },
28
- {
29
- name: 'Prompts script',
30
- value: 'prompts'
31
- },
32
- {
33
- name: 'Uninstall script',
34
- value: 'uninstall'
35
- }
36
- ]
37
- }
38
- ]
39
-
40
- */
41
-
42
- export default function (api) {
43
- return []
44
- }
package/old/uninstall.js DELETED
@@ -1,9 +0,0 @@
1
- /**
2
- * Quasar App Extension uninstall script
3
- *
4
- * Docs: https://quasar.dev/app-extensions/development-guide/uninstall-api
5
- */
6
-
7
- export default function (api) {
8
- //
9
- }
package/scripts/build.js DELETED
@@ -1,33 +0,0 @@
1
- // Copy from the Docs package to this project
2
- import fse from 'fs-extra'
3
- import path from 'path'
4
- import { fileURLToPath } from 'url'
5
-
6
- // Get the current directory name
7
- const __filename = fileURLToPath(import.meta.url)
8
- const __dirname = path.dirname(__filename)
9
-
10
- // Construct full paths
11
- const initPath = path.resolve(__dirname, '../src/templates/init')
12
- const updatePath = path.resolve(__dirname, '../src/templates/update')
13
- const globalsPath = path.resolve(__dirname, '../../docs/src/q-press.globals.d.ts')
14
- const qPressPath = path.resolve(__dirname, '../../docs/src/.q-press')
15
- const componentsPath = path.resolve(__dirname, '../../docs/src/components')
16
- const markdownPath = path.resolve(__dirname, '../../docs/src/markdown')
17
- const examplesPath = path.resolve(__dirname, '../../docs/src/examples')
18
- const siteConfigPath = path.resolve(__dirname, '../../docs/src/siteConfig')
19
-
20
- // The "update" folder only gets 'q-press.globals.d.ts' and the '_q-press' folder
21
- fse.removeSync(initPath)
22
- fse.removeSync(updatePath)
23
-
24
- fse.copySync(globalsPath, path.join(initPath, 'src/q-press.globals.d.ts'))
25
- fse.copySync(globalsPath, path.join(updatePath, 'src/q-press.globals.d.ts'))
26
-
27
- fse.copySync(qPressPath, path.join(initPath, 'src/_q-press'))
28
- fse.copySync(qPressPath, path.join(updatePath, 'src/_q-press'))
29
-
30
- fse.copySync(componentsPath, path.join(initPath, 'src/components'))
31
- fse.copySync(markdownPath, path.join(initPath, 'src/markdown'))
32
- fse.copySync(examplesPath, path.join(initPath, 'src/examples'))
33
- fse.copySync(siteConfigPath, path.join(initPath, 'src/siteConfig'))