Skip to content

Commit 10fa17a

Browse files
committed
Fixed tsdoc comments
1 parent 50241c6 commit 10fa17a

5 files changed

Lines changed: 25 additions & 6 deletions

File tree

packages/apps/terminal/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @prozilla-os/terminal
22

3+
## 2.0.0
4+
5+
### Major Changes
6+
7+
- Implemented new shell from `@prozilla-os/core`
8+
39
## 1.1.23
410

511
### Patch Changes

packages/apps/terminal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@prozilla-os/terminal",
33
"description": "A terminal/shell application for ProzillaOS.",
4-
"version": "1.1.23",
4+
"version": "2.0.0",
55
"homepage": "https://os.prozilla.dev/terminal",
66
"author": {
77
"name": "Prozilla",

packages/core/src/features/shell/command.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import { ShellContext } from "./shell";
44
* Represents a command-line flag or parameter.
55
*/
66
export interface Option {
7-
/** The full name of the option (e.g., "all" for --all). */
7+
/** The full name of the option (e.g., `"all"` for `--all`). */
88
long: string;
9-
/** The single-character alias (e.g., "a" for -a). */
9+
/** The single-character alias (e.g., `"a"` for `-a`). */
1010
short: string;
11-
/** If true, the shell expects a value to follow this option (e.g., --file <name>). */
11+
/** If true, the shell expects a value to follow this option (e.g., `--file <name>`). */
1212
isInput: boolean;
1313
}
1414

@@ -18,7 +18,7 @@ export interface Option {
1818
export interface Manual {
1919
/** A brief one-line summary of what the command does. */
2020
purpose?: string;
21-
/** A string representing the syntax (e.g., "ls [OPTION]... [FILE]..."). */
21+
/** A string representing the syntax (e.g., `"ls [OPTION]... [FILE]..."`). */
2222
usage?: string;
2323
/** A detailed explanation of the command's behavior. */
2424
description?: string;

packages/prozilla-os/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# prozilla-os
22

3+
## 2.0.0
4+
5+
### Major Changes
6+
7+
- Updated dependencies
8+
9+
## 1.3.19
10+
11+
### Patch Changes
12+
13+
- Updated dependencies
14+
- @prozilla-os/terminal@2.0.0
15+
316
## 1.3.18
417

518
### Patch Changes

packages/prozilla-os/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "prozilla-os",
33
"description": "a React component library written in TypeScript for building web-based operating systems, made by Prozilla.",
4-
"version": "1.3.18",
4+
"version": "2.0.0",
55
"homepage": "https://os.prozilla.dev",
66
"author": {
77
"name": "Prozilla",

0 commit comments

Comments
 (0)