@md-plugins/md-plugin-codeblocks 0.1.0-alpha.2 → 0.1.0-alpha.6

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.
Files changed (2) hide show
  1. package/README.md +1 -2
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -110,8 +110,7 @@ console.log('Line 3')
110
110
  ````markup
111
111
  ```js
112
112
  console.log('Line 1')
113
- console.log('Line 2')
114
- ;[[highlight]] // This line will be highlighted
113
+ console.log('Line 2') [[highlight]] // This line will be highlighted
115
114
  console.log('Line 3')
116
115
  ```
117
116
  ````
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@md-plugins/md-plugin-codeblocks",
3
- "version": "0.1.0-alpha.2",
3
+ "version": "0.1.0-alpha.6",
4
4
  "description": "A markdown-it plugin for code blocks.",
5
5
  "keywords": [
6
6
  "markdown-it",
@@ -35,7 +35,7 @@
35
35
  "dependencies": {
36
36
  "markdown-it": "^14.1.0",
37
37
  "prismjs": "^1.29.0",
38
- "@md-plugins/shared": "0.1.0-alpha.2"
38
+ "@md-plugins/shared": "0.1.0-alpha.6"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"
@@ -44,6 +44,10 @@
44
44
  "@types/markdown-it": "^14.1.2",
45
45
  "@types/prismjs": "^1.26.5"
46
46
  },
47
+ "peerDependencies": {
48
+ "markdown-it": "^14.1.0",
49
+ "prismjs": "^1.29.0"
50
+ },
47
51
  "scripts": {
48
52
  "build": "unbuild",
49
53
  "clean": "rm -rf dist/ node_modules/",