Skip to content

Commit

Permalink
[ci] release (#1846)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Aug 11, 2022
1 parent 65bab8e commit aff81ab
Show file tree
Hide file tree
Showing 10 changed files with 66 additions and 40 deletions.
8 changes: 0 additions & 8 deletions .changeset/red-spoons-flash.md

This file was deleted.

40 changes: 20 additions & 20 deletions package-lock.json

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

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

## 5.21.3

### Patch Changes

- [#1845](https://github.com/marko-js/marko/pull/1845) [`65bab8e6d`](https://github.com/marko-js/marko/commit/65bab8e6df02e6fd485a45d9a9c2200545f21479) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix issue where Marko runtime was being incorrectly matched when swapping from dev to prod runtimes.

## 5.21.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/babel-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@marko/babel-utils",
"description": "Utilities for use with Marko babel plugins.",
"version": "5.21.2",
"version": "5.21.3",
"author": "Dylan Piercey <dpiercey@ebay.com>",
"bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md",
"dependencies": {
Expand All @@ -10,7 +10,7 @@
"relative-import-path": "^1.0.0"
},
"devDependencies": {
"@marko/compiler": "^5.21.1"
"@marko/compiler": "^5.22.6"
},
"files": [
"dist",
Expand Down
9 changes: 9 additions & 0 deletions packages/compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## 5.22.6

### Patch Changes

- [#1845](https://github.com/marko-js/marko/pull/1845) [`65bab8e6d`](https://github.com/marko-js/marko/commit/65bab8e6df02e6fd485a45d9a9c2200545f21479) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix issue where Marko runtime was being incorrectly matched when swapping from dev to prod runtimes.

- Updated dependencies [[`65bab8e6d`](https://github.com/marko-js/marko/commit/65bab8e6df02e6fd485a45d9a9c2200545f21479)]:
- @marko/babel-utils@5.21.3

## 5.22.5

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@marko/compiler",
"description": "Marko template to JS compiler.",
"version": "5.22.5",
"version": "5.22.6",
"author": "Dylan Piercey <dpiercey@ebay.com>",
"bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md",
"dependencies": {
Expand All @@ -15,7 +15,7 @@
"@babel/runtime": "^7.16.0",
"@babel/traverse": "^7.16.0",
"@babel/types": "^7.16.0",
"@marko/babel-utils": "^5.21.1",
"@marko/babel-utils": "^5.21.3",
"complain": "^1.6.0",
"he": "^1.2.0",
"htmljs-parser": "^5.1.3",
Expand All @@ -30,7 +30,7 @@
"strip-json-comments": "^3.1.1"
},
"devDependencies": {
"@marko/translator-default": "^5.21.3"
"@marko/translator-default": "^5.21.5"
},
"files": [
"dist",
Expand Down
10 changes: 10 additions & 0 deletions packages/marko/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## 5.21.9

### Patch Changes

- [#1845](https://github.com/marko-js/marko/pull/1845) [`65bab8e6d`](https://github.com/marko-js/marko/commit/65bab8e6df02e6fd485a45d9a9c2200545f21479) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix issue where Marko runtime was being incorrectly matched when swapping from dev to prod runtimes.

- Updated dependencies [[`65bab8e6d`](https://github.com/marko-js/marko/commit/65bab8e6df02e6fd485a45d9a9c2200545f21479)]:
- @marko/compiler@5.22.6
- @marko/translator-default@5.21.5

## 5.21.8

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/marko/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "marko",
"version": "5.21.8",
"version": "5.21.9",
"license": "MIT",
"description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
"dependencies": {
"@marko/compiler": "^5.22.5",
"@marko/translator-default": "^5.21.3",
"@marko/compiler": "^5.22.6",
"@marko/translator-default": "^5.21.5",
"app-module-path": "^2.2.0",
"argly": "^1.2.0",
"browser-refresh-client": "1.1.4",
Expand Down
9 changes: 9 additions & 0 deletions packages/translator-default/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## 5.21.5

### Patch Changes

- [#1845](https://github.com/marko-js/marko/pull/1845) [`65bab8e6d`](https://github.com/marko-js/marko/commit/65bab8e6df02e6fd485a45d9a9c2200545f21479) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix issue where Marko runtime was being incorrectly matched when swapping from dev to prod runtimes.

- Updated dependencies [[`65bab8e6d`](https://github.com/marko-js/marko/commit/65bab8e6df02e6fd485a45d9a9c2200545f21479)]:
- @marko/babel-utils@5.21.3

## 5.21.4

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/translator-default/package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "@marko/translator-default",
"description": "Translates Marko templates to the default Marko runtime.",
"version": "5.21.4",
"version": "5.21.5",
"author": "Dylan Piercey <dpiercey@ebay.com>",
"bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md",
"dependencies": {
"@babel/runtime": "^7.16.0",
"@marko/babel-utils": "^5.21.1",
"@marko/babel-utils": "^5.21.3",
"escape-string-regexp": "^4.0.0",
"magic-string": "^0.25.7",
"self-closing-tags": "^1.0.1"
},
"devDependencies": {
"@marko/compiler": "^5.21.7",
"marko": "^5.21.3"
"@marko/compiler": "^5.22.6",
"marko": "^5.21.9"
},
"files": [
"dist"
Expand Down

0 comments on commit aff81ab

Please # to comment.