@xrow/docusaurus-changelog 4.157.0

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 +9 -0
  2. package/package.json +16 -0
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # CI Tools Docusaurus Changelog
2
+
3
+ Render a GitLab releases Atom feed in Docusaurus MDX.
4
+
5
+ ```mdx
6
+ <Changelog url="https://gitlab.com/group/project/-/releases.atom">Changelog</Changelog>
7
+ ```
8
+
9
+ The package is published to npmjs.com from ci-tools semver tag pipelines when `NPM_TOKEN` is configured.
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "@xrow/docusaurus-changelog",
3
+ "version": "4.157.0",
4
+ "description": "Docusaurus MDX changelog component for GitLab release Atom feeds.",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "module": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "peerDependencies": {
13
+ "react": ">=18"
14
+ },
15
+ "license": "MIT"
16
+ }