@md-plugins/md-plugin-imports 0.1.0-beta.2 → 0.1.0-beta.20
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/README.md +9 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -18,6 +18,8 @@ Install the plugin via your preferred package manager:
|
|
|
18
18
|
```bash
|
|
19
19
|
# with pnpm:
|
|
20
20
|
pnpm add @md-plugins/md-plugin-imports
|
|
21
|
+
# with bun:
|
|
22
|
+
bun add @md-plugins/md-plugin-imports
|
|
21
23
|
# with Yarn:
|
|
22
24
|
yarn add @md-plugins/md-plugin-imports
|
|
23
25
|
# with npm:
|
|
@@ -126,6 +128,13 @@ pnpm test
|
|
|
126
128
|
|
|
127
129
|
In case this README falls out of date, please refer to the [documentation](https://md-plugins.netlify.app/md-plugins/imports/overview) for the latest information.
|
|
128
130
|
|
|
131
|
+
## Support
|
|
132
|
+
|
|
133
|
+
If md-plugin-imports is useful in your workflow and you want to support ongoing maintenance:
|
|
134
|
+
|
|
135
|
+
GitHub Sponsors: https://github.com/sponsors/hawkeye64
|
|
136
|
+
PayPal: https://paypal.me/hawkeye64
|
|
137
|
+
|
|
129
138
|
## License
|
|
130
139
|
|
|
131
140
|
This project is licensed under the MIT License. See the [LICENSE](LICENSE.md) file for details.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@md-plugins/md-plugin-imports",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.20",
|
|
4
4
|
"description": "A markdown-it plugin for handling imports in markdown files.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"markdown-it",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/markdown-it": "^14.1.2",
|
|
40
|
-
"markdown-it": "^14.
|
|
41
|
-
"@md-plugins/shared": "0.1.0-beta.
|
|
40
|
+
"markdown-it": "^14.2.0",
|
|
41
|
+
"@md-plugins/shared": "0.1.0-beta.20"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
|
-
"markdown-it": "^14.
|
|
44
|
+
"markdown-it": "^14.2.0"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|
|
47
47
|
"build": "unbuild",
|