mirror of
https://github.com/marko-js/marko.git
synced 2026-02-01 16:07:13 +00:00
chore: publish
This commit is contained in:
parent
1d6ccb983d
commit
20bd91d7a3
11
CHANGELOG.md
11
CHANGELOG.md
@ -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.0.0-next.53](https://github.com/marko-js/marko/compare/v5.0.0-next.52...v5.0.0-next.53) (2020-11-17)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **babel-utils:** expose taglib types ([1d6ccb9](https://github.com/marko-js/marko/commit/1d6ccb983da6cbbde4c837a1fc594ab3e67fb072))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [5.0.0-next.52](https://github.com/marko-js/marko/compare/v5.0.0-next.51...v5.0.0-next.52) (2020-11-12)
|
||||
|
||||
**Note:** Version bump only for package marko-project
|
||||
|
||||
@ -13,5 +13,5 @@
|
||||
"packages/*/test/**",
|
||||
"**/*.md"
|
||||
],
|
||||
"version": "5.0.0-next.52"
|
||||
"version": "5.0.0-next.53"
|
||||
}
|
||||
|
||||
@ -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.0.0-next.53](https://github.com/marko-js/marko/tree/master/packages/babel-utils/compare/v5.0.0-next.52...v5.0.0-next.53) (2020-11-17)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **babel-utils:** expose taglib types ([1d6ccb9](https://github.com/marko-js/marko/tree/master/packages/babel-utils/commit/1d6ccb983da6cbbde4c837a1fc594ab3e67fb072))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [5.0.0-next.52](https://github.com/marko-js/marko/tree/master/packages/babel-utils/compare/v5.0.0-next.51...v5.0.0-next.52) (2020-11-12)
|
||||
|
||||
**Note:** Version bump only for package @marko/babel-utils
|
||||
|
||||
@ -1,13 +1,13 @@
|
||||
{
|
||||
"name": "@marko/babel-utils",
|
||||
"description": "Utilities for use with Marko babel plugins.",
|
||||
"version": "5.0.0-next.52",
|
||||
"version": "5.0.0-next.53",
|
||||
"author": "Dylan Piercey <dpiercey@ebay.com>",
|
||||
"bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md",
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.7.7",
|
||||
"@marko/babel-types": "^5.0.0-next.52",
|
||||
"@marko/compiler": "^5.0.0-next.52",
|
||||
"@marko/compiler": "^5.0.0-next.53",
|
||||
"jsesc": "^2.5.2"
|
||||
},
|
||||
"files": [
|
||||
|
||||
@ -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.0.0-next.53](https://github.com/marko-js/marko/tree/master/packages/compiler/compare/v5.0.0-next.52...v5.0.0-next.53) (2020-11-17)
|
||||
|
||||
**Note:** Version bump only for package @marko/compiler
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [5.0.0-next.52](https://github.com/marko-js/marko/tree/master/packages/compiler/compare/v5.0.0-next.51...v5.0.0-next.52) (2020-11-12)
|
||||
|
||||
**Note:** Version bump only for package @marko/compiler
|
||||
|
||||
2
packages/compiler/package-lock.json
generated
2
packages/compiler/package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@marko/compiler",
|
||||
"version": "5.0.0-next.52",
|
||||
"version": "5.0.0-next.53",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@marko/compiler",
|
||||
"description": "Marko template to JS compiler.",
|
||||
"version": "5.0.0-next.52",
|
||||
"version": "5.0.0-next.53",
|
||||
"author": "Dylan Piercey <dpiercey@ebay.com>",
|
||||
"bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md",
|
||||
"dependencies": {
|
||||
@ -14,8 +14,8 @@
|
||||
"@babel/traverse": "^7.7.4",
|
||||
"@babel/types": "^7.7.4",
|
||||
"@marko/babel-types": "^5.0.0-next.52",
|
||||
"@marko/babel-utils": "^5.0.0-next.52",
|
||||
"@marko/translator-default": "^5.0.0-next.52",
|
||||
"@marko/babel-utils": "^5.0.0-next.53",
|
||||
"@marko/translator-default": "^5.0.0-next.53",
|
||||
"complain": "^1.6.0",
|
||||
"enhanced-resolve": "5.0.0",
|
||||
"he": "^1.1.0",
|
||||
|
||||
@ -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.0.0-next.53](https://github.com/marko-js/marko/tree/master/packages/translator-default/compare/v5.0.0-next.52...v5.0.0-next.53) (2020-11-17)
|
||||
|
||||
**Note:** Version bump only for package @marko/translator-default
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [5.0.0-next.52](https://github.com/marko-js/marko/tree/master/packages/translator-default/compare/v5.0.0-next.51...v5.0.0-next.52) (2020-11-12)
|
||||
|
||||
**Note:** Version bump only for package @marko/translator-default
|
||||
|
||||
@ -1,14 +1,14 @@
|
||||
{
|
||||
"name": "@marko/translator-default",
|
||||
"description": "Translates Marko templates to the default Marko runtime.",
|
||||
"version": "5.0.0-next.52",
|
||||
"version": "5.0.0-next.53",
|
||||
"author": "Dylan Piercey <dpiercey@ebay.com>",
|
||||
"bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md",
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.7.7",
|
||||
"@marko/babel-types": "^5.0.0-next.52",
|
||||
"@marko/babel-utils": "^5.0.0-next.52",
|
||||
"@marko/compiler": "^5.0.0-next.52",
|
||||
"@marko/babel-utils": "^5.0.0-next.53",
|
||||
"@marko/compiler": "^5.0.0-next.53",
|
||||
"escape-string-regexp": "^4.0.0",
|
||||
"marko": "^5.0.0-next.52",
|
||||
"self-closing-tags": "^1.0.1"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user