Skip to content

Commit

Permalink
[ci] release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and DylanPiercey committed Jul 18, 2023
1 parent 334c9f5 commit 8db7346
Show file tree
Hide file tree
Showing 11 changed files with 48 additions and 31 deletions.
8 changes: 0 additions & 8 deletions .changeset/rotten-snakes-happen.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/smart-bats-help.md

This file was deleted.

17 changes: 7 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions packages/language-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Change Log

## 1.1.3

### Patch Changes

- [#200](https://github.com/marko-js/language-server/pull/200) [`e05c6f6`](https://github.com/marko-js/language-server/commit/e05c6f622730160e05581552df6e5bf4bb64ce57) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix issue with default compiler not being found.

- [#200](https://github.com/marko-js/language-server/pull/200) [`7903aa0`](https://github.com/marko-js/language-server/commit/7903aa09acbedddee3f9177cd54ec05b79edc75e) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Ensure consistent ordering of results returned from merged language server plugins. Previously response order was determined by the order in which individual plugins (css, typescript, marko and html) responded asynchronously, now it is always in a preset order.

- Updated dependencies [[`e05c6f6`](https://github.com/marko-js/language-server/commit/e05c6f622730160e05581552df6e5bf4bb64ce57)]:
- @marko/language-tools@2.1.2

## 1.1.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/language-server/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@marko/language-server",
"description": "Marko Language Server",
"version": "1.1.2",
"version": "1.1.3",
"bin": {
"marko-language-server": "./bin.js"
},
"bugs": "https://github.com/marko-js/language-server/issues/new?template=Bug_report.md",
"dependencies": {
"@babel/helper-validator-identifier": "^7.22.5",
"@marko/language-tools": "^2.1.1",
"@marko/language-tools": "^2.1.2",
"@marko/babel-utils": "^6.2.0",
"@marko/compiler": "^5.31.1",
"@marko/translator-default": "^5.29.2",
Expand Down
6 changes: 6 additions & 0 deletions packages/language-tools/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @marko/language-tools

## 2.1.2

### Patch Changes

- [#200](https://github.com/marko-js/language-server/pull/200) [`e05c6f6`](https://github.com/marko-js/language-server/commit/e05c6f622730160e05581552df6e5bf4bb64ce57) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix issue with default compiler not being found.

## 2.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/language-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@marko/language-tools",
"description": "Marko Language Tools",
"version": "2.1.1",
"version": "2.1.2",
"bugs": "https://github.com/marko-js/language-server/issues/new?template=Bug_report.md",
"peerDependencies": {
"@marko/compiler": "^5.28.4"
Expand Down
9 changes: 9 additions & 0 deletions packages/type-check/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @marko/type-check

## 0.0.16

### Patch Changes

- [#200](https://github.com/marko-js/language-server/pull/200) [`e05c6f6`](https://github.com/marko-js/language-server/commit/e05c6f622730160e05581552df6e5bf4bb64ce57) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix issue with default compiler not being found.

- Updated dependencies [[`e05c6f6`](https://github.com/marko-js/language-server/commit/e05c6f622730160e05581552df6e5bf4bb64ce57)]:
- @marko/language-tools@2.1.2

## 0.0.15

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/type-check/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@marko/type-check",
"description": "A CLI to type check Marko projects",
"version": "0.0.15",
"version": "0.0.16",
"bugs": "https://github.com/marko-js/language-server/issues/new?template=Bug_report.md",
"dependencies": {
"@babel/code-frame": "^7.22.5",
"@marko/language-tools": "^2.1.1",
"@marko/language-tools": "^2.1.2",
"arg": "^5.0.2",
"kleur": "^4.1.5",
"strip-json-comments": "^3.1.1",
Expand Down
8 changes: 8 additions & 0 deletions packages/vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## 1.1.4

### Patch Changes

- [#200](https://github.com/marko-js/language-server/pull/200) [`e05c6f6`](https://github.com/marko-js/language-server/commit/e05c6f622730160e05581552df6e5bf4bb64ce57) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix issue with default compiler not being found.

- [#200](https://github.com/marko-js/language-server/pull/200) [`7903aa0`](https://github.com/marko-js/language-server/commit/7903aa09acbedddee3f9177cd54ec05b79edc75e) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Ensure consistent ordering of results returned from merged language server plugins. Previously response order was determined by the order in which individual plugins (css, typescript, marko and html) responded asynchronously, now it is always in a preset order.

## 1.1.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/vscode/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "marko-vscode",
"description": "Marko Tooling for VSCode",
"version": "1.1.3",
"version": "1.1.4",
"activationEvents": [
"workspaceContains:**/*.marko"
],
Expand Down Expand Up @@ -81,7 +81,7 @@
}
},
"devDependencies": {
"@marko/language-server": "^1.1.2",
"@marko/language-server": "^1.1.3",
"@types/babel__helper-validator-identifier": "^7.15.0",
"@types/vscode": "^1.80.0",
"@vscode/test-electron": "^2.3.3",
Expand Down

0 comments on commit 8db7346

Please sign in to comment.