mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
[ci] release
This commit is contained in:
parent
7957fb5648
commit
be1cc1b0d3
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@marko/translator-default": patch
|
||||
"marko": patch
|
||||
---
|
||||
|
||||
Switch to .d.marko file for <await> tag types to avoid issues when loaded in a pure typescript project. By default TypeScript doesn't play well with `node_modules` which are seen as `.js` files which is what the jsdoc version of a Marko file appears as. By switching to a `.d.marko` it is instead always seen as `.ts` which is always analyzed by typescript.
|
||||
12
package-lock.json
generated
12
package-lock.json
generated
@ -10525,11 +10525,11 @@
|
||||
"integrity": "sha512-uEDMMkBCJvjTqYMBnJNxn+neiS6a0rhybQNA9RaexGor1uvKjwyHA5VcbZMZEuqXhKUWbL+WNS7PhuZVZNB7pw=="
|
||||
},
|
||||
"packages/marko": {
|
||||
"version": "5.29.1",
|
||||
"version": "5.29.2",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@marko/compiler": "^5.31.1",
|
||||
"@marko/translator-default": "^5.29.1",
|
||||
"@marko/translator-default": "^5.29.2",
|
||||
"app-module-path": "^2.2.0",
|
||||
"argly": "^1.2.0",
|
||||
"browser-refresh-client": "1.1.4",
|
||||
@ -10554,7 +10554,7 @@
|
||||
},
|
||||
"packages/translator-default": {
|
||||
"name": "@marko/translator-default",
|
||||
"version": "5.29.1",
|
||||
"version": "5.29.2",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.16.0",
|
||||
@ -10565,7 +10565,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@marko/compiler": "^5.31.1",
|
||||
"marko": "^5.29.1"
|
||||
"marko": "^5.29.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@marko/compiler": "^5.16.1",
|
||||
@ -12233,7 +12233,7 @@
|
||||
"@marko/compiler": "^5.31.1",
|
||||
"escape-string-regexp": "^4.0.0",
|
||||
"magic-string": "^0.27.0",
|
||||
"marko": "^5.29.1",
|
||||
"marko": "^5.29.2",
|
||||
"self-closing-tags": "^1.0.1"
|
||||
},
|
||||
"dependencies": {
|
||||
@ -15688,7 +15688,7 @@
|
||||
"version": "file:packages/marko",
|
||||
"requires": {
|
||||
"@marko/compiler": "^5.31.1",
|
||||
"@marko/translator-default": "^5.29.1",
|
||||
"@marko/translator-default": "^5.29.2",
|
||||
"app-module-path": "^2.2.0",
|
||||
"argly": "^1.2.0",
|
||||
"browser-refresh-client": "1.1.4",
|
||||
|
||||
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 5.29.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#1999](https://github.com/marko-js/marko/pull/1999) [`7957fb564`](https://github.com/marko-js/marko/commit/7957fb56485a8607ab5b928531001085aba2d104) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Switch to .d.marko file for <await> tag types to avoid issues when loaded in a pure typescript project. By default TypeScript doesn't play well with `node_modules` which are seen as `.js` files which is what the jsdoc version of a Marko file appears as. By switching to a `.d.marko` it is instead always seen as `.ts` which is always analyzed by typescript.
|
||||
|
||||
- Updated dependencies [[`7957fb564`](https://github.com/marko-js/marko/commit/7957fb56485a8607ab5b928531001085aba2d104)]:
|
||||
- @marko/translator-default@5.29.2
|
||||
|
||||
## 5.29.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,11 +1,11 @@
|
||||
{
|
||||
"name": "marko",
|
||||
"version": "5.29.1",
|
||||
"version": "5.29.2",
|
||||
"license": "MIT",
|
||||
"description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
|
||||
"dependencies": {
|
||||
"@marko/compiler": "^5.31.1",
|
||||
"@marko/translator-default": "^5.29.1",
|
||||
"@marko/translator-default": "^5.29.2",
|
||||
"app-module-path": "^2.2.0",
|
||||
"argly": "^1.2.0",
|
||||
"browser-refresh-client": "1.1.4",
|
||||
|
||||
@ -1,5 +1,11 @@
|
||||
# Change Log
|
||||
|
||||
## 5.29.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#1999](https://github.com/marko-js/marko/pull/1999) [`7957fb564`](https://github.com/marko-js/marko/commit/7957fb56485a8607ab5b928531001085aba2d104) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Switch to .d.marko file for <await> tag types to avoid issues when loaded in a pure typescript project. By default TypeScript doesn't play well with `node_modules` which are seen as `.js` files which is what the jsdoc version of a Marko file appears as. By switching to a `.d.marko` it is instead always seen as `.ts` which is always analyzed by typescript.
|
||||
|
||||
## 5.29.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@marko/translator-default",
|
||||
"description": "Translates Marko templates to the default Marko runtime.",
|
||||
"version": "5.29.1",
|
||||
"version": "5.29.2",
|
||||
"author": "Dylan Piercey <dpiercey@ebay.com>",
|
||||
"bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md",
|
||||
"dependencies": {
|
||||
@ -13,7 +13,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@marko/compiler": "^5.31.1",
|
||||
"marko": "^5.29.1"
|
||||
"marko": "^5.29.2"
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user