Skip to content

Commit 1539f43

Browse files
authored
Merge branch 'main' into feat/terminal-open
2 parents fadbbba + 8fb3322 commit 1539f43

File tree

21 files changed

+96
-10
lines changed

21 files changed

+96
-10
lines changed

.github/workflows/publish-create-tutorial.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
body: 'Bump `create-tutorial` to version ${{ inputs.version }}.'
4242
reviewers: SamVerschueren,d3lm,Nemikolh,AriPerkkio
4343
branch: chore/release-create-tutorial-${{ inputs.version }}
44+
token: ${{ secrets.GITOPS_REPO_PAT }}
4445

4546
publish_release_create_tutorial:
4647
name: Publish Release create-tutorial

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## [0.1.5](https://github.com/stackblitz/tutorialkit/compare/0.1.4...0.1.5) (2024-08-16)
2+
3+
4+
### Bug Fixes
5+
6+
* **astro:** don't modify state during re-renders of `<WorkspacePanelWrapper />` ([#240](https://github.com/stackblitz/tutorialkit/issues/240)) ([745be37](https://github.com/stackblitz/tutorialkit/commit/745be37ef20ae97d6ded221fca24670742981879))
7+
* **extension:** only match tutorialkit content and meta files ([#242](https://github.com/stackblitz/tutorialkit/issues/242)) ([9c1b55a](https://github.com/stackblitz/tutorialkit/commit/9c1b55abd0967053782458db4ee41180f26d6c5d))
8+
9+
10+
### Features
11+
12+
* **runtime:** add `preview.pathname` ([#233](https://github.com/stackblitz/tutorialkit/issues/233)) ([9bf2156](https://github.com/stackblitz/tutorialkit/commit/9bf2156df26656427482645d3d134127863de233))
13+
14+
15+
116
## [0.1.4](https://github.com/stackblitz/tutorialkit/compare/0.1.3...0.1.4) (2024-08-08)
217

318

packages/astro/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [0.1.5](https://github.com/stackblitz/tutorialkit/compare/0.1.4...0.1.5) "@tutorialkit/astro" (2024-08-16)
2+
3+
4+
### Bug Fixes
5+
6+
* **astro:** don't modify state during re-renders of `<WorkspacePanelWrapper />` ([#240](https://github.com/stackblitz/tutorialkit/issues/240)) ([745be37](https://github.com/stackblitz/tutorialkit/commit/745be37ef20ae97d6ded221fca24670742981879))
7+
8+
9+
110
## [0.1.4](https://github.com/stackblitz/tutorialkit/compare/0.1.3...0.1.4) "@tutorialkit/astro" (2024-08-08)
211

312

packages/astro/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tutorialkit/astro",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"description": "TutorialKit integration for Astro (https://astro.build)",
55
"author": "StackBlitz Inc.",
66
"type": "module",

packages/astro/types.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ declare module 'tutorialkit:store' {
55
}
66

77
declare module 'tutorialkit:core' {
8-
export const webcontainer: import('@webcontainer/api').WebContainer;
8+
export const webcontainer: Promise<import('@webcontainer/api').WebContainer>;
99
}

packages/cli/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [0.1.5](https://github.com/stackblitz/tutorialkit/compare/0.1.4...0.1.5) "@tutorialkit/cli" (2024-08-16)
2+
3+
4+
15
## [0.1.4](https://github.com/stackblitz/tutorialkit/compare/0.1.3...0.1.4) "@tutorialkit/cli" (2024-08-08)
26

37

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tutorialkit/cli",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"description": "Interactive tutorials powered by WebContainer API",
55
"author": "StackBlitz Inc.",
66
"type": "module",

packages/cli/tests/create-tutorial.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ async function runPnpmInstall(dest: string, baseDir: string) {
240240

241241
packageJson.pnpm = {
242242
overrides: {
243-
'@astrojs/language-server': '2.11.1',
243+
'@astrojs/language-server': '2.14.1',
244244
'@tutorialkit/astro': `file:${baseDir}/packages/astro`,
245245
'@tutorialkit/components-react': `file:${baseDir}/packages/components/react`,
246246
'@tutorialkit/runtime': `file:${baseDir}/packages/runtime`,

packages/components/react/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [0.1.5](https://github.com/stackblitz/tutorialkit/compare/0.1.4...0.1.5) "@tutorialkit/components-react" (2024-08-16)
2+
3+
4+
### Bug Fixes
5+
6+
* **astro:** don't modify state during re-renders of `<WorkspacePanelWrapper />` ([#240](https://github.com/stackblitz/tutorialkit/issues/240)) ([745be37](https://github.com/stackblitz/tutorialkit/commit/745be37ef20ae97d6ded221fca24670742981879))
7+
8+
9+
110
## [0.1.4](https://github.com/stackblitz/tutorialkit/compare/0.1.3...0.1.4) "@tutorialkit/components-react" (2024-08-08)
211

312

packages/components/react/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tutorialkit/components-react",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"description": "TutorialKit's React components",
55
"author": "StackBlitz Inc.",
66
"type": "module",
@@ -62,6 +62,7 @@
6262
"@codemirror/lang-json": "^6.0.1",
6363
"@codemirror/lang-markdown": "^6.2.5",
6464
"@codemirror/lang-sass": "^6.0.2",
65+
"@codemirror/lang-vue": "^0.1.3",
6566
"@codemirror/lang-wast": "^6.0.2",
6667
"@codemirror/language": "^6.10.2",
6768
"@codemirror/state": "^6.4.1",

0 commit comments

Comments
 (0)