From 8e92110d6a8b81c583e7b3ed6b227f66ea208938 Mon Sep 17 00:00:00 2001 From: Mike Donnalley Date: Wed, 24 Jul 2024 15:22:34 -0600 Subject: [PATCH] fix: broken link --- docs/introduction.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/introduction.md b/docs/introduction.md index 8b392894..a3c0c52d 100644 --- a/docs/introduction.md +++ b/docs/introduction.md @@ -2,7 +2,7 @@ title: Introduction --- -oclif is a framework for building command-line interfaces (CLIs) using [Node.js](https://nodejs.org/en). You can use it like a [simple flag parser](https://github.com/oclif/core#usage), but it's capable of much more. It's designed to be extensible so that you can easily add plugins, such as the [update warning plugin](https://github.com/oclif/plugin-warn-if-update-available), or build your own for users to install at runtime. +oclif is a framework for building command-line interfaces (CLIs) using [Node.js](https://nodejs.org/en). You can use it like a [simple flag parser](https://github.com/oclif/core?tab=readme-ov-file#-standalone-usage), but it's capable of much more. It's designed to be extensible so that you can easily add plugins, such as the [update warning plugin](https://github.com/oclif/plugin-warn-if-update-available), or build your own for users to install at runtime. The oclif generator creates a CLI project in TypeScript to get you started quickly. The generated CLI requires very few runtime dependencies and has minimal overhead. @@ -21,7 +21,7 @@ $ npm install --global oclif ## Create an oclif Project from Scratch -To create a new oclif project from scratch, run the `oclif generate` command. +To create a new oclif project from scratch, run the `oclif generate` command. ``` $ oclif generate mynewcli