Skip to content

Commit 4a20fbc

Browse files
committed
Note about bash, misc changes
1 parent 2e6c781 commit 4a20fbc

File tree

13 files changed

+1090
-491
lines changed

13 files changed

+1090
-491
lines changed

.astro/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"_variables": {
3+
"lastUpdateCheck": 1714666019610
4+
}
5+
}

.astro/types.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -353,6 +353,13 @@ declare module 'astro:content' {
353353
collection: "docs";
354354
data: InferEntrySchema<"docs">
355355
} & { render(): Render[".mdx"] };
356+
"tips/bash.mdx": {
357+
id: "tips/bash.mdx";
358+
slug: "tips/bash";
359+
body: string;
360+
collection: "docs";
361+
data: InferEntrySchema<"docs">
362+
} & { render(): Render[".mdx"] };
356363
"tips/ccsid.mdx": {
357364
id: "tips/ccsid.mdx";
358365
slug: "tips/ccsid";

package-lock.json

Lines changed: 999 additions & 448 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
"astro": "astro"
1111
},
1212
"dependencies": {
13+
"@astrojs/check": "^0.5.5",
1314
"@astrojs/starlight": "^0.19.1",
14-
"astro": "^4.3.5",
15+
"astro": "^4.7.1",
1516
"sharp": "^0.32.5",
16-
"@astrojs/check": "^0.5.5",
1717
"typescript": "^5.3.3"
1818
}
19-
}
19+
}

src/assets/Tips_Bash_Offer.png

10.2 KB
Loading

src/assets/connect_06.png

-5.92 KB
Binary file not shown.

src/assets/connect_07.png

7.46 KB
Loading

src/assets/connect_08.png

5.49 KB
Loading

src/content/docs/developing/debug/index.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ import { Aside, CardGrid, Card, Icon, Tabs, TabItem } from '@astrojs/starlight/c
77

88
Debugging ILE programs is now available inside of Visual Studio Code. We've added UI to make sure setting up the Debug Service to be a swift process.
99

10+
<Aside type="note">You must have `bash` set as your default shell. [See Bash Shell Required](/docs/tips/bash/) for more info. </Aside>
11+
1012
# Starting to debug
1113

1214
<CardGrid>

src/content/docs/index.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
---
22
title: Code for IBM i
3+
description: Maintain and compile your RPGLE, CL, COBOL, C/CPP on the IBM i right from Visual Studio Code
34
---
45

56
import { CardGrid, Card, Icon } from '@astrojs/starlight/components';
67

78
## IBM i development extension for VS Code
89

9-
Maintain and compile your RPGLE, CL, COBOL, C/CPP on the IBM i right from Visual Studio Code.
10+
Maintain and compile your RPGLE, CL, COBOL, C/CPP on the IBM i right from Visual Studio Code
1011

1112
![intro_01.png](../../assets/intro_01.png)
1213

0 commit comments

Comments
 (0)