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
a54a237948
commit
ce2cb382fd
@ -1,7 +0,0 @@
|
||||
---
|
||||
"@marko/translator-default": patch
|
||||
"@marko/compiler": patch
|
||||
"marko": patch
|
||||
---
|
||||
|
||||
Change the stack frame for error messages generated by the compiler to work better with how node prints error messages.
|
||||
26
package-lock.json
generated
26
package-lock.json
generated
@ -10480,7 +10480,7 @@
|
||||
},
|
||||
"packages/compiler": {
|
||||
"name": "@marko/compiler",
|
||||
"version": "5.30.1",
|
||||
"version": "5.30.2",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/code-frame": "^7.16.0",
|
||||
@ -10508,7 +10508,7 @@
|
||||
"strip-json-comments": "^3.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@marko/translator-default": "^5.28.1"
|
||||
"@marko/translator-default": "^5.28.2"
|
||||
}
|
||||
},
|
||||
"packages/compiler/node_modules/jsesc": {
|
||||
@ -10527,11 +10527,11 @@
|
||||
"integrity": "sha512-uEDMMkBCJvjTqYMBnJNxn+neiS6a0rhybQNA9RaexGor1uvKjwyHA5VcbZMZEuqXhKUWbL+WNS7PhuZVZNB7pw=="
|
||||
},
|
||||
"packages/marko": {
|
||||
"version": "5.28.1",
|
||||
"version": "5.28.2",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@marko/compiler": "^5.30.1",
|
||||
"@marko/translator-default": "^5.28.1",
|
||||
"@marko/compiler": "^5.30.2",
|
||||
"@marko/translator-default": "^5.28.2",
|
||||
"app-module-path": "^2.2.0",
|
||||
"argly": "^1.2.0",
|
||||
"browser-refresh-client": "1.1.4",
|
||||
@ -10556,7 +10556,7 @@
|
||||
},
|
||||
"packages/translator-default": {
|
||||
"name": "@marko/translator-default",
|
||||
"version": "5.28.1",
|
||||
"version": "5.28.2",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.16.0",
|
||||
@ -10566,8 +10566,8 @@
|
||||
"self-closing-tags": "^1.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@marko/compiler": "^5.30.1",
|
||||
"marko": "^5.28.1"
|
||||
"@marko/compiler": "^5.30.2",
|
||||
"marko": "^5.28.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@marko/compiler": "^5.16.1",
|
||||
@ -12201,7 +12201,7 @@
|
||||
"@babel/traverse": "^7.16.0",
|
||||
"@babel/types": "^7.16.0",
|
||||
"@marko/babel-utils": "^6.1.0",
|
||||
"@marko/translator-default": "^5.28.1",
|
||||
"@marko/translator-default": "^5.28.2",
|
||||
"complain": "^1.6.0",
|
||||
"he": "^1.2.0",
|
||||
"htmljs-parser": "^5.4.3",
|
||||
@ -12231,10 +12231,10 @@
|
||||
"requires": {
|
||||
"@babel/runtime": "^7.16.0",
|
||||
"@marko/babel-utils": "^6.1.0",
|
||||
"@marko/compiler": "^5.30.1",
|
||||
"@marko/compiler": "^5.30.2",
|
||||
"escape-string-regexp": "^4.0.0",
|
||||
"magic-string": "^0.27.0",
|
||||
"marko": "^5.28.1",
|
||||
"marko": "^5.28.2",
|
||||
"self-closing-tags": "^1.0.1"
|
||||
},
|
||||
"dependencies": {
|
||||
@ -15689,8 +15689,8 @@
|
||||
"marko": {
|
||||
"version": "file:packages/marko",
|
||||
"requires": {
|
||||
"@marko/compiler": "^5.30.1",
|
||||
"@marko/translator-default": "^5.28.1",
|
||||
"@marko/compiler": "^5.30.2",
|
||||
"@marko/translator-default": "^5.28.2",
|
||||
"app-module-path": "^2.2.0",
|
||||
"argly": "^1.2.0",
|
||||
"browser-refresh-client": "1.1.4",
|
||||
|
||||
@ -1,5 +1,11 @@
|
||||
# Change Log
|
||||
|
||||
## 5.30.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#1990](https://github.com/marko-js/marko/pull/1990) [`a54a23794`](https://github.com/marko-js/marko/commit/a54a2379487fd20e6598d5fdfc7c7dbe0f644e8b) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Change the stack frame for error messages generated by the compiler to work better with how node prints error messages.
|
||||
|
||||
## 5.30.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@marko/compiler",
|
||||
"description": "Marko template to JS compiler.",
|
||||
"version": "5.30.1",
|
||||
"version": "5.30.2",
|
||||
"author": "Dylan Piercey <dpiercey@ebay.com>",
|
||||
"bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md",
|
||||
"dependencies": {
|
||||
@ -30,7 +30,7 @@
|
||||
"strip-json-comments": "^3.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@marko/translator-default": "^5.28.1"
|
||||
"@marko/translator-default": "^5.28.2"
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
|
||||
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 5.28.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#1990](https://github.com/marko-js/marko/pull/1990) [`a54a23794`](https://github.com/marko-js/marko/commit/a54a2379487fd20e6598d5fdfc7c7dbe0f644e8b) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Change the stack frame for error messages generated by the compiler to work better with how node prints error messages.
|
||||
|
||||
- Updated dependencies [[`a54a23794`](https://github.com/marko-js/marko/commit/a54a2379487fd20e6598d5fdfc7c7dbe0f644e8b)]:
|
||||
- @marko/translator-default@5.28.2
|
||||
- @marko/compiler@5.30.2
|
||||
|
||||
## 5.28.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,11 +1,11 @@
|
||||
{
|
||||
"name": "marko",
|
||||
"version": "5.28.1",
|
||||
"version": "5.28.2",
|
||||
"license": "MIT",
|
||||
"description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
|
||||
"dependencies": {
|
||||
"@marko/compiler": "^5.30.1",
|
||||
"@marko/translator-default": "^5.28.1",
|
||||
"@marko/compiler": "^5.30.2",
|
||||
"@marko/translator-default": "^5.28.2",
|
||||
"app-module-path": "^2.2.0",
|
||||
"argly": "^1.2.0",
|
||||
"browser-refresh-client": "1.1.4",
|
||||
|
||||
@ -1,5 +1,11 @@
|
||||
# Change Log
|
||||
|
||||
## 5.28.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#1990](https://github.com/marko-js/marko/pull/1990) [`a54a23794`](https://github.com/marko-js/marko/commit/a54a2379487fd20e6598d5fdfc7c7dbe0f644e8b) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Change the stack frame for error messages generated by the compiler to work better with how node prints error messages.
|
||||
|
||||
## 5.28.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@marko/translator-default",
|
||||
"description": "Translates Marko templates to the default Marko runtime.",
|
||||
"version": "5.28.1",
|
||||
"version": "5.28.2",
|
||||
"author": "Dylan Piercey <dpiercey@ebay.com>",
|
||||
"bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md",
|
||||
"dependencies": {
|
||||
@ -12,8 +12,8 @@
|
||||
"self-closing-tags": "^1.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@marko/compiler": "^5.30.1",
|
||||
"marko": "^5.28.1"
|
||||
"@marko/compiler": "^5.30.2",
|
||||
"marko": "^5.28.2"
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user