chore: release tags api as 6.0.0

This commit is contained in:
dpiercey 2025-04-11 12:27:34 -07:00 committed by Dylan Piercey
parent 8386d6edfb
commit 5346eb9288
5 changed files with 9 additions and 5 deletions

View File

@ -0,0 +1,5 @@
---
"@marko/runtime-tags": major
---
Release Tags API as 6.0.0.

4
package-lock.json generated
View File

@ -10543,7 +10543,7 @@
},
"packages/runtime-tags": {
"name": "@marko/runtime-tags",
"version": "0.3.86",
"version": "5.0.0",
"license": "MIT",
"dependencies": {
"@marko/compiler": "^5.39.18",
@ -10560,7 +10560,7 @@
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.26.2",
"@marko/runtime-tags": "^0.3.86",
"@marko/runtime-tags": "^5.0.0",
"marko": "^5.37.25"
},
"engines": {

View File

@ -1,6 +1,6 @@
{
"name": "@marko/runtime-tags",
"version": "0.3.86",
"version": "5.0.0",
"description": "Optimized runtime for Marko templates.",
"keywords": [
"api",

View File

@ -30,7 +30,7 @@
},
"dependencies": {
"@babel/code-frame": "^7.26.2",
"@marko/runtime-tags": "^0.3.86",
"@marko/runtime-tags": "^5.0.0",
"marko": "^5.37.25"
},
"peerDependencies": {

View File

@ -9,7 +9,6 @@ const originalPkgSource = fs.readFileSync(runtimeTagsPkgFile, "utf-8");
const pkg = JSON.parse(originalPkgSource);
pkg.name = "marko";
pkg.version = "6.0.0-next." + pkg.version.replace(/^(0\.)+/, "");
try {
fs.writeFileSync(runtimeTagsPkgFile, JSON.stringify(pkg, null, 2) + "\n");