mintlify 1.0.9 → 1.1.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 +53 -31
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,31 +1,53 @@
1
- # Mintlify CLI
2
-
3
- The Mintlify CLI is used to automate migrations.
4
-
5
- ## Installation
6
-
7
- `npm i -g mintlify`
8
-
9
- If you installed a local version, you may need to uninstall it with
10
-
11
- `npm uninstall -g mintlify` before installing the published version.
12
-
13
- ## Local development & testing
14
-
15
- To test changes locally run:
16
-
17
- `npm run local`
18
-
19
- ## Commands
20
-
21
- ### Migrations
22
-
23
- We support automated migrations from ReadMe, GitBook, and Docusaurus.
24
-
25
- `mintlify scrape-page <url>` - Scrapes the page at the URL provided and creates a corresponding MDX file
26
-
27
- `mintlify scrape-section <url>` - Scrapes the section at the URL provided and creates the MDX files within that section
28
-
29
- #### Options
30
-
31
- `--overwrite` - By default if an existing file with the same path name is detected, the file will not be overwritten by the scraper. Use this option to force an overwrite.
1
+ <div align="center">
2
+ <a href="https://mintlify.com">
3
+ <img
4
+ src="https://res.cloudinary.com/mintlify/image/upload/v1665385627/logo-rounded_zuk7q1.svg"
5
+ alt="Mintlify Logo"
6
+ height="64"
7
+ />
8
+ </a>
9
+ <br />
10
+ <p>
11
+ <h3>
12
+ <b>
13
+ Mintlify CLI
14
+ </b>
15
+ </h3>
16
+ </p>
17
+ <p>
18
+ The Mintlify CLI is the easiest way to build Mintlify apps from the command line.
19
+ </p>
20
+ <p>
21
+
22
+ [![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen?logo=github)](/) [![Website](https://img.shields.io/website?url=https%3A%2F%2Fmintlify.com&logo=mintlify)](https://mintlify.com) [![Tests](https://github.com/mintlify/mint/actions/workflows/manual.yml/badge.svg)](https://github.com/mintlify/mint/actions) [![Tweet](https://img.shields.io/twitter/url?url=https%3A%2F%2Fmintlify.com%2F)](https://twitter.com/intent/tweet?url=&text=Check%20out%20%40mintlify) [![Chat on Discord](https://img.shields.io/badge/chat-Discord-7289DA?logo=discord)](https://discord.gg/MPNgtSZkgK) [![Discuss on GitHub](https://img.shields.io/badge/discussions-GitHub-333333?logo=github)](https://github.com/mintlify/mint/discussions)
23
+
24
+ </p>
25
+ <p>
26
+ <sub>
27
+ Built with ❤︎ by
28
+ <a href="https://mintlify.com">
29
+ Mintlify
30
+ </a>
31
+ </sub>
32
+ </p>
33
+ </div>
34
+
35
+ ### 🚀 Installation
36
+
37
+ Download the Mintlify CLI using the following command
38
+
39
+ ```
40
+ npm i mintlify -g
41
+ ```
42
+
43
+ ### 👩‍💻 Development
44
+
45
+ Run the following command at the root of your Mintlify application to preview changes locally.
46
+
47
+ ```
48
+ mintlify dev
49
+ ```
50
+
51
+ ### 🏃 Get Started
52
+
53
+ [Create an account](https://mintlify.com/start) to start using Mintlify for your documentation.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mintlify",
3
- "version": "1.0.9",
3
+ "version": "1.1.0",
4
4
  "description": "The Mintlify CLI",
5
5
  "engines": {
6
6
  "node": ">=14.16"