chore: publish v5.9.0

This commit is contained in:
Dylan Piercey 2021-04-21 09:49:02 -07:00
parent 3da10447d3
commit bb82580fe4
No known key found for this signature in database
GPG Key ID: 9736AB8CA3ED17CA
10 changed files with 70 additions and 13 deletions

View File

@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [5.9.0](https://github.com/marko-js/marko/compare/v5.8.4...v5.9.0) (2021-04-21)
### Bug Fixes
* **babel-utils:** invalid type for importNamed api ([3da1044](https://github.com/marko-js/marko/commit/3da10447d3ca8ff2a3376aa17b04116bcdec66c2))
### Features
* expose api to get runtime entry files for translator ([#1687](https://github.com/marko-js/marko/issues/1687)) ([fad9159](https://github.com/marko-js/marko/commit/fad91598b28f3ab6e8e3550e42c50d062ea41ad9))
## [5.8.4](https://github.com/marko-js/marko/compare/v5.8.3...v5.8.4) (2021-04-19)

View File

@ -13,5 +13,5 @@
"packages/*/test/**",
"**/*.md"
],
"version": "5.8.4"
"version": "5.9.0"
}

View File

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [5.9.0](https://github.com/marko-js/marko/tree/master/packages/babel-utils/compare/v5.8.4...v5.9.0) (2021-04-21)
### Bug Fixes
* **babel-utils:** invalid type for importNamed api ([3da1044](https://github.com/marko-js/marko/tree/master/packages/babel-utils/commit/3da10447d3ca8ff2a3376aa17b04116bcdec66c2))
## [5.8.1](https://github.com/marko-js/marko/tree/master/packages/babel-utils/compare/v5.8.0...v5.8.1) (2021-04-16)
**Note:** Version bump only for package @marko/babel-utils

View File

@ -1,7 +1,7 @@
{
"name": "@marko/babel-utils",
"description": "Utilities for use with Marko babel plugins.",
"version": "5.8.1",
"version": "5.9.0",
"author": "Dylan Piercey <dpiercey@ebay.com>",
"bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md",
"dependencies": {
@ -9,7 +9,7 @@
"jsesc": "^3.0.2"
},
"devDependencies": {
"@marko/compiler": "^5.8.1"
"@marko/compiler": "^5.9.0"
},
"files": [
"dist",

View File

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [5.9.0](https://github.com/marko-js/marko/tree/master/packages/compiler/compare/v5.8.4...v5.9.0) (2021-04-21)
### Features
* expose api to get runtime entry files for translator ([#1687](https://github.com/marko-js/marko/tree/master/packages/compiler/issues/1687)) ([fad9159](https://github.com/marko-js/marko/tree/master/packages/compiler/commit/fad91598b28f3ab6e8e3550e42c50d062ea41ad9))
## [5.8.4](https://github.com/marko-js/marko/tree/master/packages/compiler/compare/v5.8.3...v5.8.4) (2021-04-19)
**Note:** Version bump only for package @marko/compiler

View File

@ -1,7 +1,7 @@
{
"name": "@marko/compiler",
"description": "Marko template to JS compiler.",
"version": "5.8.4",
"version": "5.9.0",
"author": "Dylan Piercey <dpiercey@ebay.com>",
"bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md",
"dependencies": {
@ -13,7 +13,7 @@
"@babel/runtime": "^7.13.10",
"@babel/traverse": "^7.13.0",
"@babel/types": "^7.13.0",
"@marko/babel-utils": "^5.8.1",
"@marko/babel-utils": "^5.9.0",
"complain": "^1.6.0",
"enhanced-resolve": "5.7.0",
"he": "^1.2.0",
@ -29,7 +29,7 @@
"strip-json-comments": "^3.1.1"
},
"devDependencies": {
"@marko/translator-default": "^5.8.4"
"@marko/translator-default": "^5.9.0"
},
"files": [
"dist",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [5.9.0](https://github.com/marko-js/marko/compare/v5.8.4...v5.9.0) (2021-04-21)
**Note:** Version bump only for package marko
## [5.8.4](https://github.com/marko-js/marko/compare/v5.8.3...v5.8.4) (2021-04-19)
**Note:** Version bump only for package marko

View File

@ -1,11 +1,11 @@
{
"name": "marko",
"version": "5.8.4",
"version": "5.9.0",
"license": "MIT",
"description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
"dependencies": {
"@marko/compiler": "^5.8.4",
"@marko/translator-default": "^5.8.4",
"@marko/compiler": "^5.9.0",
"@marko/translator-default": "^5.9.0",
"app-module-path": "^2.2.0",
"argly": "^1.2.0",
"browser-refresh-client": "1.1.4",

View File

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [5.9.0](https://github.com/marko-js/marko/tree/master/packages/translator-default/compare/v5.8.4...v5.9.0) (2021-04-21)
### Features
* expose api to get runtime entry files for translator ([#1687](https://github.com/marko-js/marko/tree/master/packages/translator-default/issues/1687)) ([fad9159](https://github.com/marko-js/marko/tree/master/packages/translator-default/commit/fad91598b28f3ab6e8e3550e42c50d062ea41ad9))
## [5.8.4](https://github.com/marko-js/marko/tree/master/packages/translator-default/compare/v5.8.3...v5.8.4) (2021-04-19)

View File

@ -1,19 +1,19 @@
{
"name": "@marko/translator-default",
"description": "Translates Marko templates to the default Marko runtime.",
"version": "5.8.4",
"version": "5.9.0",
"author": "Dylan Piercey <dpiercey@ebay.com>",
"bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md",
"dependencies": {
"@babel/runtime": "^7.13.10",
"@marko/babel-utils": "^5.8.1",
"@marko/babel-utils": "^5.9.0",
"escape-string-regexp": "^4.0.0",
"magic-string": "^0.25.7",
"self-closing-tags": "^1.0.1"
},
"devDependencies": {
"@marko/compiler": "^5.8.4",
"marko": "^5.8.4"
"@marko/compiler": "^5.9.0",
"marko": "^5.9.0"
},
"files": [
"dist"