From 4219462b56274470a1bd0f923b45d7a1c289cf5c Mon Sep 17 00:00:00 2001 From: Owen Buckley Date: Sat, 25 Jan 2025 19:30:53 -0500 Subject: [PATCH] v0.31.0-alpha.6 --- lerna.json | 2 +- packages/cli/package.json | 2 +- packages/init/package.json | 2 +- packages/plugin-adapter-netlify/package.json | 4 ++-- packages/plugin-adapter-vercel/package.json | 4 ++-- packages/plugin-babel/package.json | 4 ++-- packages/plugin-css-modules/package.json | 4 ++-- packages/plugin-google-analytics/package.json | 4 ++-- packages/plugin-graphql/package.json | 4 ++-- packages/plugin-import-commonjs/package.json | 4 ++-- packages/plugin-import-css/package.json | 4 ++-- packages/plugin-import-json/package.json | 4 ++-- packages/plugin-import-jsx/package.json | 4 ++-- packages/plugin-import-raw/package.json | 4 ++-- packages/plugin-include-html/package.json | 4 ++-- packages/plugin-polyfills/package.json | 4 ++-- packages/plugin-postcss/package.json | 4 ++-- packages/plugin-renderer-lit/package.json | 4 ++-- packages/plugin-renderer-puppeteer/package.json | 4 ++-- packages/plugin-typescript/package.json | 4 ++-- www/package.json | 2 +- 21 files changed, 38 insertions(+), 38 deletions(-) diff --git a/lerna.json b/lerna.json index eeac72abe..d285515e5 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "0.31.0-alpha.5", + "version": "0.31.0-alpha.6", "packages": [ "packages/*", "www" diff --git a/packages/cli/package.json b/packages/cli/package.json index 527bf9e90..4d3378800 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@greenwood/cli", - "version": "0.31.0-alpha.5", + "version": "0.31.0-alpha.6", "description": "Greenwood CLI.", "type": "module", "repository": "https://github.com/ProjectEvergreen/greenwood", diff --git a/packages/init/package.json b/packages/init/package.json index 381d7359c..a867614f3 100644 --- a/packages/init/package.json +++ b/packages/init/package.json @@ -1,6 +1,6 @@ { "name": "@greenwood/init", - "version": "0.31.0-alpha.5", + "version": "0.31.0-alpha.6", "description": "A package for scaffolding a new Greenwood project.", "repository": "https://github.com/ProjectEvergreen/greenwood", "homepage": "https://github.com/ProjectEvergreen/greenwood/tree/master/packages/init", diff --git a/packages/plugin-adapter-netlify/package.json b/packages/plugin-adapter-netlify/package.json index 3249c347a..a852e8db4 100644 --- a/packages/plugin-adapter-netlify/package.json +++ b/packages/plugin-adapter-netlify/package.json @@ -1,6 +1,6 @@ { "name": "@greenwood/plugin-adapter-netlify", - "version": "0.31.0-alpha.5", + "version": "0.31.0-alpha.6", "description": "A Greenwood plugin for supporting Netlify serverless and edge runtimes.", "repository": "https://github.com/ProjectEvergreen/greenwood", "homepage": "https://github.com/ProjectEvergreen/greenwood/tree/master/packages/plugin-adapter-netlify", @@ -32,7 +32,7 @@ "zip-a-folder": "^2.0.0" }, "devDependencies": { - "@greenwood/cli": "^0.31.0-alpha.5", + "@greenwood/cli": "^0.31.0-alpha.6", "extract-zip": "^2.0.1" } } diff --git a/packages/plugin-adapter-vercel/package.json b/packages/plugin-adapter-vercel/package.json index a255d9848..f8de1719d 100644 --- a/packages/plugin-adapter-vercel/package.json +++ b/packages/plugin-adapter-vercel/package.json @@ -1,6 +1,6 @@ { "name": "@greenwood/plugin-adapter-vercel", - "version": "0.31.0-alpha.5", + "version": "0.31.0-alpha.6", "description": "A Greenwood plugin for supporting Vercel serverless and edge runtimes.", "repository": "https://github.com/ProjectEvergreen/greenwood", "homepage": "https://github.com/ProjectEvergreen/greenwood/tree/master/packages/plugin-adapter-vercel", @@ -28,6 +28,6 @@ "@greenwood/cli": "^0.30.0" }, "devDependencies": { - "@greenwood/cli": "^0.31.0-alpha.5" + "@greenwood/cli": "^0.31.0-alpha.6" } } diff --git a/packages/plugin-babel/package.json b/packages/plugin-babel/package.json index 6e48716e1..cd3ec098b 100644 --- a/packages/plugin-babel/package.json +++ b/packages/plugin-babel/package.json @@ -1,6 +1,6 @@ { "name": "@greenwood/plugin-babel", - "version": "0.31.0-alpha.5", + "version": "0.31.0-alpha.6", "description": "A Greenwood plugin for using Babel and applying it to your JavaScript.", "repository": "https://github.com/ProjectEvergreen/greenwood", "homepage": "https://github.com/ProjectEvergreen/greenwood/tree/master/packages/plugin-babel", @@ -37,6 +37,6 @@ "@babel/plugin-proposal-class-properties": "^7.10.4", "@babel/plugin-proposal-private-methods": "^7.10.4", "@babel/runtime": "^7.10.4", - "@greenwood/cli": "^0.31.0-alpha.5" + "@greenwood/cli": "^0.31.0-alpha.6" } } diff --git a/packages/plugin-css-modules/package.json b/packages/plugin-css-modules/package.json index 916dc2307..6d6f5ccb9 100644 --- a/packages/plugin-css-modules/package.json +++ b/packages/plugin-css-modules/package.json @@ -1,6 +1,6 @@ { "name": "@greenwood/plugin-css-modules", - "version": "0.31.0-alpha.5", + "version": "0.31.0-alpha.6", "description": "A Greenwood plugin for authoring CSS Modules", "repository": "https://github.com/ProjectEvergreen/greenwood", "homepage": "https://github.com/ProjectEvergreen/greenwood/tree/master/packages/plugin-css-modules", @@ -34,6 +34,6 @@ "sucrase": "^3.35.0" }, "devDependencies": { - "@greenwood/cli": "^0.31.0-alpha.5" + "@greenwood/cli": "^0.31.0-alpha.6" } } diff --git a/packages/plugin-google-analytics/package.json b/packages/plugin-google-analytics/package.json index 26eca31a0..96b8c65a0 100644 --- a/packages/plugin-google-analytics/package.json +++ b/packages/plugin-google-analytics/package.json @@ -1,6 +1,6 @@ { "name": "@greenwood/plugin-google-analytics", - "version": "0.31.0-alpha.5", + "version": "0.31.0-alpha.6", "description": "A Greenwood plugin adding support for Google Analytics JavaScript tracker.", "repository": "https://github.com/ProjectEvergreen/greenwood", "homepage": "https://github.com/ProjectEvergreen/greenwood/tree/master/packages/plugin-google-analytics", @@ -27,6 +27,6 @@ "@greenwood/cli": "^0.30.0" }, "devDependencies": { - "@greenwood/cli": "^0.31.0-alpha.5" + "@greenwood/cli": "^0.31.0-alpha.6" } } diff --git a/packages/plugin-graphql/package.json b/packages/plugin-graphql/package.json index a8a04e9f6..9c54f83bc 100644 --- a/packages/plugin-graphql/package.json +++ b/packages/plugin-graphql/package.json @@ -1,6 +1,6 @@ { "name": "@greenwood/plugin-graphql", - "version": "0.31.0-alpha.5", + "version": "0.31.0-alpha.6", "description": "A plugin for using GraphQL for querying your content.", "repository": "https://github.com/ProjectEvergreen/greenwood", "homepage": "https://github.com/ProjectEvergreen/greenwood/tree/master/packages/plugin-graphql", @@ -34,6 +34,6 @@ "graphql-tag": "^2.10.1" }, "devDependencies": { - "@greenwood/cli": "^0.31.0-alpha.5" + "@greenwood/cli": "^0.31.0-alpha.6" } } diff --git a/packages/plugin-import-commonjs/package.json b/packages/plugin-import-commonjs/package.json index 47d04d72a..ef6c4d5f0 100644 --- a/packages/plugin-import-commonjs/package.json +++ b/packages/plugin-import-commonjs/package.json @@ -1,6 +1,6 @@ { "name": "@greenwood/plugin-import-commonjs", - "version": "0.31.0-alpha.5", + "version": "0.31.0-alpha.6", "description": "A plugin for loading CommonJS based modules in the browser using ESM (import / export) syntax.", "repository": "https://github.com/ProjectEvergreen/greenwood", "homepage": "https://github.com/ProjectEvergreen/greenwood/tree/master/packages/plugin-import-commonjs", @@ -32,7 +32,7 @@ "cjs-module-lexer": "^1.0.0" }, "devDependencies": { - "@greenwood/cli": "^0.31.0-alpha.5", + "@greenwood/cli": "^0.31.0-alpha.6", "lodash": "^4.17.20" } } diff --git a/packages/plugin-import-css/package.json b/packages/plugin-import-css/package.json index 1a78f3e7a..02b4a3e4d 100644 --- a/packages/plugin-import-css/package.json +++ b/packages/plugin-import-css/package.json @@ -1,6 +1,6 @@ { "name": "@greenwood/plugin-import-css", - "version": "0.31.0-alpha.5", + "version": "0.31.0-alpha.6", "private": true, "description": "A Greenwood plugin to allow you to use ESM (import) syntax to load your CSS.", "repository": "https://github.com/ProjectEvergreen/greenwood", @@ -25,6 +25,6 @@ "@greenwood/cli": "^0.30.0" }, "devDependencies": { - "@greenwood/cli": "^0.31.0-alpha.5" + "@greenwood/cli": "^0.31.0-alpha.6" } } diff --git a/packages/plugin-import-json/package.json b/packages/plugin-import-json/package.json index cf1930a6e..bd8fe23a4 100644 --- a/packages/plugin-import-json/package.json +++ b/packages/plugin-import-json/package.json @@ -1,6 +1,6 @@ { "name": "@greenwood/plugin-import-json", - "version": "0.31.0-alpha.5", + "version": "0.31.0-alpha.6", "private": true, "description": "A Greenwood plugin to allow you to use ESM (import) syntax to load your JSON.", "repository": "https://github.com/ProjectEvergreen/greenwood", @@ -25,6 +25,6 @@ "@greenwood/cli": "^0.12.3" }, "devDependencies": { - "@greenwood/cli": "^0.31.0-alpha.5" + "@greenwood/cli": "^0.31.0-alpha.6" } } diff --git a/packages/plugin-import-jsx/package.json b/packages/plugin-import-jsx/package.json index b8175ff7b..24eb54274 100644 --- a/packages/plugin-import-jsx/package.json +++ b/packages/plugin-import-jsx/package.json @@ -1,6 +1,6 @@ { "name": "@greenwood/plugin-import-jsx", - "version": "0.31.0-alpha.5", + "version": "0.31.0-alpha.6", "description": "A Greenwood plugin to write JSX rendering Web Components compatible with WCC.", "repository": "https://github.com/ProjectEvergreen/greenwood", "homepage": "https://github.com/ProjectEvergreen/greenwood/tree/master/packages/plugin-import-jsx", @@ -31,6 +31,6 @@ "wc-compiler": "~0.16.0" }, "devDependencies": { - "@greenwood/cli": "^0.31.0-alpha.5" + "@greenwood/cli": "^0.31.0-alpha.6" } } diff --git a/packages/plugin-import-raw/package.json b/packages/plugin-import-raw/package.json index ee1904150..47e97365d 100644 --- a/packages/plugin-import-raw/package.json +++ b/packages/plugin-import-raw/package.json @@ -1,6 +1,6 @@ { "name": "@greenwood/plugin-import-raw", - "version": "0.31.0-alpha.5", + "version": "0.31.0-alpha.6", "description": "A Greenwood plugin to allow you to use ESM (import) syntax to load any file content as a string.", "repository": "https://github.com/ProjectEvergreen/greenwood", "homepage": "https://github.com/ProjectEvergreen/greenwood/tree/master/packages/plugin-import-raw", @@ -27,6 +27,6 @@ "@greenwood/cli": "^0.30.0" }, "devDependencies": { - "@greenwood/cli": "^0.31.0-alpha.5" + "@greenwood/cli": "^0.31.0-alpha.6" } } diff --git a/packages/plugin-include-html/package.json b/packages/plugin-include-html/package.json index 47a725bd5..ae23d057b 100644 --- a/packages/plugin-include-html/package.json +++ b/packages/plugin-include-html/package.json @@ -1,6 +1,6 @@ { "name": "@greenwood/plugin-include-html", - "version": "0.31.0-alpha.5", + "version": "0.31.0-alpha.6", "description": "A Greenwood plugin to let you render server side JS from HTML or JS at build time as HTML.", "repository": "https://github.com/ProjectEvergreen/greenwood", "homepage": "https://github.com/ProjectEvergreen/greenwood/tree/master/packages/plugin-include-html", @@ -28,6 +28,6 @@ "@greenwood/cli": "^0.30.0" }, "devDependencies": { - "@greenwood/cli": "^0.31.0-alpha.5" + "@greenwood/cli": "^0.31.0-alpha.6" } } diff --git a/packages/plugin-polyfills/package.json b/packages/plugin-polyfills/package.json index cb3a5e4c2..670628cd3 100644 --- a/packages/plugin-polyfills/package.json +++ b/packages/plugin-polyfills/package.json @@ -1,6 +1,6 @@ { "name": "@greenwood/plugin-polyfills", - "version": "0.31.0-alpha.5", + "version": "0.31.0-alpha.6", "description": "A Greenwood plugin adding support for Web Component related polyfills like Custom Elements and Shadow DOM.", "repository": "https://github.com/ProjectEvergreen/greenwood", "homepage": "https://github.com/ProjectEvergreen/greenwood/tree/master/packages/plugin-polyfills", @@ -30,6 +30,6 @@ "@webcomponents/webcomponentsjs": "^2.6.0" }, "devDependencies": { - "@greenwood/cli": "^0.31.0-alpha.5" + "@greenwood/cli": "^0.31.0-alpha.6" } } diff --git a/packages/plugin-postcss/package.json b/packages/plugin-postcss/package.json index 00351e740..8cd3c88df 100644 --- a/packages/plugin-postcss/package.json +++ b/packages/plugin-postcss/package.json @@ -1,6 +1,6 @@ { "name": "@greenwood/plugin-postcss", - "version": "0.31.0-alpha.5", + "version": "0.31.0-alpha.6", "description": "A Greenwood plugin for loading PostCSS configuration and applying it to your CSS.", "repository": "https://github.com/ProjectEvergreen/greenwood", "homepage": "https://github.com/ProjectEvergreen/greenwood/tree/master/packages/plugin-postcss", @@ -32,7 +32,7 @@ "postcss-preset-env": "^7.0.1" }, "devDependencies": { - "@greenwood/cli": "^0.31.0-alpha.5", + "@greenwood/cli": "^0.31.0-alpha.6", "@spectrum-css/typography": "^6.2.0" } } diff --git a/packages/plugin-renderer-lit/package.json b/packages/plugin-renderer-lit/package.json index 74ad6a68b..8a5d8d42d 100644 --- a/packages/plugin-renderer-lit/package.json +++ b/packages/plugin-renderer-lit/package.json @@ -1,6 +1,6 @@ { "name": "@greenwood/plugin-renderer-lit", - "version": "0.31.0-alpha.5", + "version": "0.31.0-alpha.6", "description": "A server-side rendering plugin for Lit based Greenwood projects.", "type": "module", "repository": "https://github.com/ProjectEvergreen/greenwood", @@ -33,7 +33,7 @@ "@lit-labs/ssr-client": "^1.1.6" }, "devDependencies": { - "@greenwood/cli": "^0.31.0-alpha.5", + "@greenwood/cli": "^0.31.0-alpha.6", "lit": "^3.1.0" } } diff --git a/packages/plugin-renderer-puppeteer/package.json b/packages/plugin-renderer-puppeteer/package.json index 45bb2e00b..6ec4ad140 100644 --- a/packages/plugin-renderer-puppeteer/package.json +++ b/packages/plugin-renderer-puppeteer/package.json @@ -1,6 +1,6 @@ { "name": "@greenwood/plugin-renderer-puppeteer", - "version": "0.31.0-alpha.5", + "version": "0.31.0-alpha.6", "description": "A Greenwood plugin to allow headless browser rendering with Puppeteer.", "repository": "https://github.com/ProjectEvergreen/greenwood", "homepage": "https://github.com/ProjectEvergreen/greenwood/tree/master/packages/plugin-renderer-puppeteer", @@ -31,6 +31,6 @@ "puppeteer": "^24.0.0" }, "devDependencies": { - "@greenwood/cli": "^0.31.0-alpha.5" + "@greenwood/cli": "^0.31.0-alpha.6" } } diff --git a/packages/plugin-typescript/package.json b/packages/plugin-typescript/package.json index 581b0e8c4..9134208b0 100644 --- a/packages/plugin-typescript/package.json +++ b/packages/plugin-typescript/package.json @@ -1,6 +1,6 @@ { "name": "@greenwood/plugin-typescript", - "version": "0.31.0-alpha.5", + "version": "0.31.0-alpha.6", "description": "A Greenwood plugin for writing TypeScript.", "repository": "https://github.com/ProjectEvergreen/greenwood", "homepage": "https://github.com/ProjectEvergreen/greenwood/tree/master/packages/plugin-typescript", @@ -30,6 +30,6 @@ "typescript": "^5.1.6" }, "devDependencies": { - "@greenwood/cli": "^0.31.0-alpha.5" + "@greenwood/cli": "^0.31.0-alpha.6" } } diff --git a/www/package.json b/www/package.json index 9575e075d..ed640b6a7 100644 --- a/www/package.json +++ b/www/package.json @@ -1,6 +1,6 @@ { "name": "@greenwood/www", - "version": "0.31.0-alpha.5", + "version": "0.31.0-alpha.6", "private": true, "type": "module", "description": "Greenwood website workspace.",