Skip to content

Commit

Permalink
Merge pull request #397 from marp-team/upgrade-dependencies
Browse files Browse the repository at this point in the history
Upgrade dependent packages to the latest version
  • Loading branch information
yhatt authored Jan 9, 2023
2 parents 23e905b + 243f863 commit d23a8b9
Show file tree
Hide file tree
Showing 8 changed files with 2,378 additions and 1,389 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

- name: Parse pre-release flag for vsce
id: vsce-prerelease
run: echo "::set-output name=prerelease::$(cat package.json | jq '.vsce.preRelease')"
run: echo "prerelease=$(cat package.json | jq '.vsce.preRelease')" >> $GITHUB_OUTPUT

- uses: marp-team/actions@v1
with:
Expand All @@ -36,7 +36,7 @@ jobs:

- name: Find out created VSIX
id: vsix
run: echo "::set-output name=name::$(find . -maxdepth 1 -name '*.vsix' -printf '%f\n' | head -n 1)"
run: echo "name=$(find . -maxdepth 1 -name '*.vsix' -printf '%f\n' | head -n 1)" >> $GITHUB_OUTPUT

- name: Upload VSIX to GitHub Release
uses: marp-team/actions@v1
Expand All @@ -58,7 +58,7 @@ jobs:

- name: Parse pre-release flag for vsce
id: vsce-prerelease
run: echo "::set-output name=prerelease::$(cat package.json | jq '.vsce.preRelease')"
run: echo "prerelease=$(cat package.json | jq '.vsce.preRelease')" >> $GITHUB_OUTPUT

- uses: actions/download-artifact@v3
with:
Expand All @@ -67,7 +67,7 @@ jobs:

- name: Find out downloaded VSIX
id: vsix
run: echo "::set-output name=path::$(find ~/vsix -maxdepth 1 -name '*.vsix' -printf '%p\n' | head -n 1)"
run: echo "path=$(find ~/vsix -maxdepth 1 -name '*.vsix' -printf '%p\n' | head -n 1)" >> $GITHUB_OUTPUT

- name: Publish to Open VSX Registry
uses: HaaLeo/publish-vscode-extension@v1
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

### Changed

- Upgrade Marp Core to [v3.4.2](https://github.com/marp-team/marp-core/releases/tag/v3.4.2) ([#397](https://github.com/marp-team/marp-vscode/pull/397))
- Upgrade Marp CLI to [v2.3.0](https://github.com/marp-team/marp-cli/releases/tag/v2.3.0) ([#397](https://github.com/marp-team/marp-vscode/pull/397), [#393](https://github.com/marp-team/marp-vscode/issues/393))
- Upgrade dependent packages to the latest version ([#397](https://github.com/marp-team/marp-vscode/pull/397))

## v2.4.0 - 2022-12-11

> 🆙 **This is a first stable release of v2.x!** You can see differences from v1 at [#392](https://github.com/marp-team/marp-vscode/pull/392).
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ You can use Marp extension in VS Code for the Web environment like [vscode.dev](

The web extension has some limitations:

- _Export command cannot use_ because it is depending on Marp CLI that is not designed for Web. Please use VS Code that is installed to your local environment, or [GitHub Codespaces](https://github.com/features/codespaces) if you wanted an environment working on Web.
- _Export command cannot use_ because it is depending on Marp CLI that is not designed for Web. Please use VS Code that is installed to your local environment, or use either [VS Code Server](https://code.visualstudio.com/docs/remote/vscode-server) or [GitHub Codespaces](https://github.com/features/codespaces) if you wanted an environment working on Web.

## Contributing

Expand Down
Loading

0 comments on commit d23a8b9

Please sign in to comment.