Skip to content

Commit 6ab48ca

Browse files
github-actions[bot]DylanPiercey
authored andcommitted
[ci] release
1 parent 396ca10 commit 6ab48ca

File tree

10 files changed

+79
-50
lines changed

10 files changed

+79
-50
lines changed

.changeset/selfish-parrots-turn.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/small-donuts-sip.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

.changeset/smooth-dingos-grow.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

package-lock.json

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

packages/compiler/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Change Log
22

3+
## 5.27.2
4+
5+
### Patch Changes
6+
7+
- [#1920](https://github.com/marko-js/marko/pull/1920) [`7d5dab41c`](https://github.com/marko-js/marko/commit/7d5dab41c33cacbdff376570df09f65eb228a6a9) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Avoid adding `export {}` (from "@babel/plugin-transform-typescript") when outputing a template with the types stripped.
8+
9+
- [#1918](https://github.com/marko-js/marko/pull/1918) [`cceab7d20`](https://github.com/marko-js/marko/commit/cceab7d2061c627d5f3ea296f0acba80f97ad494) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Reduce script parsing restrictions added by Babel.
10+
This was causing Babel to error when parsing partial scripts.
11+
12+
```marko
13+
static const x = 1;
14+
export { x };
15+
```
16+
17+
Before this change in the above code Babel would error when parsing `export { x }` saying `x` was not previously defined. This is because Marko parses these statements in isolation.
18+
19+
- [#1920](https://github.com/marko-js/marko/pull/1920) [`7d5dab41c`](https://github.com/marko-js/marko/commit/7d5dab41c33cacbdff376570df09f65eb228a6a9) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Avoid outputing a `declare`'d type on a `class`.
20+
321
## 5.27.1
422

523
### Patch Changes

packages/compiler/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@marko/compiler",
33
"description": "Marko template to JS compiler.",
4-
"version": "5.27.1",
4+
"version": "5.27.2",
55
"author": "Dylan Piercey <[email protected]>",
66
"bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md",
77
"dependencies": {
@@ -29,7 +29,7 @@
2929
"strip-json-comments": "^3.1.1"
3030
},
3131
"devDependencies": {
32-
"@marko/translator-default": "^5.25.1"
32+
"@marko/translator-default": "^5.25.2"
3333
},
3434
"files": [
3535
"dist",

packages/marko/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Change Log
22

3+
## 5.25.2
4+
5+
### Patch Changes
6+
7+
- [#1920](https://github.com/marko-js/marko/pull/1920) [`7d5dab41c`](https://github.com/marko-js/marko/commit/7d5dab41c33cacbdff376570df09f65eb228a6a9) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Avoid adding `export {}` (from "@babel/plugin-transform-typescript") when outputing a template with the types stripped.
8+
9+
- [#1918](https://github.com/marko-js/marko/pull/1918) [`cceab7d20`](https://github.com/marko-js/marko/commit/cceab7d2061c627d5f3ea296f0acba80f97ad494) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Reduce script parsing restrictions added by Babel.
10+
This was causing Babel to error when parsing partial scripts.
11+
12+
```marko
13+
static const x = 1;
14+
export { x };
15+
```
16+
17+
Before this change in the above code Babel would error when parsing `export { x }` saying `x` was not previously defined. This is because Marko parses these statements in isolation.
18+
19+
- [#1920](https://github.com/marko-js/marko/pull/1920) [`7d5dab41c`](https://github.com/marko-js/marko/commit/7d5dab41c33cacbdff376570df09f65eb228a6a9) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Avoid outputing a `declare`'d type on a `class`.
20+
21+
- Updated dependencies [[`7d5dab41c`](https://github.com/marko-js/marko/commit/7d5dab41c33cacbdff376570df09f65eb228a6a9), [`cceab7d20`](https://github.com/marko-js/marko/commit/cceab7d2061c627d5f3ea296f0acba80f97ad494), [`7d5dab41c`](https://github.com/marko-js/marko/commit/7d5dab41c33cacbdff376570df09f65eb228a6a9)]:
22+
- @marko/compiler@5.27.2
23+
- @marko/translator-default@5.25.2
24+
325
## 5.25.1
426

527
### Patch Changes

packages/marko/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "marko",
3-
"version": "5.25.1",
3+
"version": "5.25.2",
44
"license": "MIT",
55
"description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
66
"dependencies": {
7-
"@marko/compiler": "^5.27.1",
8-
"@marko/translator-default": "^5.25.1",
7+
"@marko/compiler": "^5.27.2",
8+
"@marko/translator-default": "^5.25.2",
99
"app-module-path": "^2.2.0",
1010
"argly": "^1.2.0",
1111
"browser-refresh-client": "1.1.4",

packages/translator-default/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Change Log
22

3+
## 5.25.2
4+
5+
### Patch Changes
6+
7+
- [#1920](https://github.com/marko-js/marko/pull/1920) [`7d5dab41c`](https://github.com/marko-js/marko/commit/7d5dab41c33cacbdff376570df09f65eb228a6a9) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Avoid adding `export {}` (from "@babel/plugin-transform-typescript") when outputing a template with the types stripped.
8+
9+
- [#1918](https://github.com/marko-js/marko/pull/1918) [`cceab7d20`](https://github.com/marko-js/marko/commit/cceab7d2061c627d5f3ea296f0acba80f97ad494) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Reduce script parsing restrictions added by Babel.
10+
This was causing Babel to error when parsing partial scripts.
11+
12+
```marko
13+
static const x = 1;
14+
export { x };
15+
```
16+
17+
Before this change in the above code Babel would error when parsing `export { x }` saying `x` was not previously defined. This is because Marko parses these statements in isolation.
18+
19+
- [#1920](https://github.com/marko-js/marko/pull/1920) [`7d5dab41c`](https://github.com/marko-js/marko/commit/7d5dab41c33cacbdff376570df09f65eb228a6a9) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Avoid outputing a `declare`'d type on a `class`.
20+
321
## 5.25.1
422

523
### Patch Changes

packages/translator-default/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@marko/translator-default",
33
"description": "Translates Marko templates to the default Marko runtime.",
4-
"version": "5.25.1",
4+
"version": "5.25.2",
55
"author": "Dylan Piercey <[email protected]>",
66
"bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md",
77
"dependencies": {
@@ -12,8 +12,8 @@
1212
"self-closing-tags": "^1.0.1"
1313
},
1414
"devDependencies": {
15-
"@marko/compiler": "^5.27.1",
16-
"marko": "^5.25.1"
15+
"@marko/compiler": "^5.27.2",
16+
"marko": "^5.25.2"
1717
},
1818
"files": [
1919
"dist"

0 commit comments

Comments
 (0)