Skip to content

Commit

Permalink
Merge branch 'develop' into Invitation-schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Souvik9205 authored Jan 9, 2025
2 parents 4b7452e + 2ed31c0 commit 591921e
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
4 changes: 2 additions & 2 deletions apps/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"type": "module",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --outfile=dist/index.esm.js --format=esm --banner:js='#!/usr/bin/env node' && esbuild src/index.ts --bundle --platform=node --outfile=dist/index.cjs --format=cjs --banner:js='#!/usr/bin/env node'",
"start": "node dist/index.js",
"dev": "pnpm build && node dist/index.js",
"start": "node dist/index.cjs",
"dev": "pnpm build && node dist/index.cjs",
"lint": "eslint \"src/**/*.ts\" --fix",
"publish": "pnpm build && pnpm publish --access public --provenance"
},
Expand Down
6 changes: 3 additions & 3 deletions docs/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@

- [Introduction](cli/introduction.md)
- [Profile](cli/profile.md)
- [Init](cli/init.md)
- [Workspace](cli/workspace.md)
- [Project](cli/project.md)
- [Environment](cli/environment.md)
- [Workspace](cli/workspace.md)
- [Scan](cli/scan.md)
- [Init](cli/init.md)
- [Run](cli/run.md)
- [Scan](cli/scan.md)

## 🥰 CONTRIBUTING TO KEYSHADE

Expand Down
14 changes: 14 additions & 0 deletions docs/cli/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,20 @@ The CLI has the following commands:
- [init](./init.md): This command is used to initialize your project to tap into the live updates from our platform.
- [run](./run.md): This command is used to run your application.

## Installing the CLI

To install the CLI, simply run:

```bash
npm install -g @keyshade/cli
```

Verify the installation using:

```bash
keyshade --help
```

## Global flags

Global flags work with any command in the CLI. The following are the global flags:
Expand Down

0 comments on commit 591921e

Please sign in to comment.