Releases: ProjectEvergreen/greenwood
v0.28.2
Overview
This patch release aims to address the known issues coming out of the 0.28.0 release.
If using Yarn, you can can upgrade all your @greenwood packages at once
$ yarn upgrade --scope @greenwood --latest
Changelog
https://github.com/ProjectEvergreen/greenwood/issues?q=label%3Av0.28.2
- SSR pages are not getting their resources (
<link>
and<script>
tags) bundled and optimized with the serve command - imported modules in API routes not reloading changes in development mode
- not found static assets are returning 500 status code when running the
serve
command
Breaking Changes
N / A
Known Issues
Diff
$ git diff v0.28.1 v0.28.2 --stat | grep -v "www"
lerna.json | 2 +-
packages/cli/package.json | 2 +-
packages/cli/src/commands/build.js | 60 +++++-
packages/cli/src/lib/api-route-worker.js | 43 ++++
packages/cli/src/lib/resource-utils.js | 67 +++++-
packages/cli/src/lifecycles/bundle.js | 23 +-
packages/cli/src/lifecycles/compile.js | 9 -
packages/cli/src/lifecycles/graph.js | 18 +-
packages/cli/src/lifecycles/prerender.js | 69 +-----
packages/cli/src/lifecycles/serve.js | 55 ++---
.../cli/src/plugins/copy/plugin-copy-graph-json.js | 14 --
.../cli/src/plugins/resource/plugin-api-routes.js | 70 +++++-
.../src/plugins/resource/plugin-standard-html.js | 4 +-
.../build.default.ssr-static-export.spec.js | 5 +-
.../cli/test/cases/develop.ssr/develop.ssr.spec.js | 2 +-
.../serve.default.api/serve.default.api.spec.js | 24 +++
.../serve.default.ssr/serve.default.ssr.spec.js | 51 ++++-
.../serve.default.ssr/src/components/header.js | 19 ++
.../cases/serve.default.ssr/src/templates/app.html | 2 +
.../test/cases/serve.default/serve.default.spec.js | 24 +++
packages/init/package.json | 2 +-
packages/plugin-babel/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-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 +-
yarn.lock | 8 +-
54 files changed, 681 insertions(+), 208 deletions(-)
v0.28.1
Overview
This patch release aims to fix a known issue coming out of the recent 0.28.0 release.
If using Yarn, you can can upgrade all your @greenwood packages at once
$ yarn upgrade --scope @greenwood --latest
Changelog
https://github.com/ProjectEvergreen/greenwood/issues?q=label%3Av0.28.1
- SSR pages with
prerender
configuration are not getting served from static HTML - align static server port being hardcoded for generic
URL
creation
Breaking Changes
N / A
Known Issues
- SSR pages are not getting their resources (
<link>
and<script>
tags) bundled and optimized with the serve command - imported modules in API routes not reloading changes in development mode
- not found static assets are returning 500 status code when running the
serve
command - browsers inconsistently serving incorrect / stale content from dev server
Diff
$ git diff v0.28.0 v0.28.1 --stat | grep -v "www"
lerna.json | 2 +-
packages/cli/package.json | 2 +-
packages/cli/src/lifecycles/bundle.js | 150 +++++++++--------
packages/cli/src/lifecycles/serve.js | 7 +-
.../src/plugins/copy/plugin-copy-user-templates.js | 21 ---
.../greenwood.config.js | 3 +
.../serve.default.ssr-prerender-api-hybrid.spec.js | 181 +++++++++++++++++++++
.../src/api/greeting.js | 11 ++
.../src/components/footer.js | 16 ++
.../src/pages/index.js | 7 +
.../src/templates/app.html | 13 ++
.../serve.default.ssr-prerender.spec.js | 14 ++
.../serve.default.ssr-static-export.spec.js | 8 +
.../serve.default.ssr/serve.default.ssr.spec.js | 28 ++++
packages/init/package.json | 2 +-
packages/plugin-babel/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-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 +-
29 files changed, 394 insertions(+), 125 deletions(-)
v0.28.0
Overview
In addition to some general refactoring around bundling SSR routes and some breaking changes (see section on Breaking Changes below), this release introduces some exciting new feature and enhancements for Greenwood!
- 📦 Node 18 (minimum) version upgrade
- 🕸️ Web API Standardization
- ⚡ API Routes
Checkout the accompanying blog post for more information on all these features.
If using Yarn, you can can upgrade all your @greenwood packages at once
$ yarn upgrade --scope @greenwood --latest
Changelog
https://github.com/ProjectEvergreen/greenwood/issues?q=label%3Av0.28.0
- upgrade to Node v18 as minimum supported version
- Standardize on Web APIs (
Request
/Response
/URL
/ etc) - API Routes
- Support web standard
<audio>
and<video>
formats - Create a plugin for import JSX plugin (using WCC)
- bundle and optimize server and API routes and serve from output directory (decouple
serve
task from source code)
Breaking Changes
Node 18
The new minimum supported Node version with Greenwood is now v18. So make sure you update your GitHub Actions, hosting configuration; e.g. _netlify.toml, .nvmrc, etc.
Additionally, Greenwood now longer depends on node-fetch however native fetch
in Node 18 can / should be a drop in replacement for most cases. Just remove your import
line for node-fetch and test, and if so, you should be good to go! (You can always self install node-fetch if you want it back though).
greenwood.config.js
Workspace
You can now pass in a URL object directly instead of having to convert it to a path
import { fileURLToPath } from 'url';
// before
export default {
workspace: fileURLToPath(new URL('./www', import.meta.url))
};
// after
export default {
workspace: new URL('./www', import.meta.url)
};
devServer.extensions
No period (.
) is needed when passing in custom extensions.
// before
extensions: ['.txt', '.rtf']
// after
extensions: ['txt', 'rtf']
Plugins
Resource
Resource plugins have had their lifecycle signatures and return types refactored to align exclusively with Web APIs. The docs have been updated with more in depth examples so it is recommended to review those, but otherwise the business logic of those lifecycles should still apply. Below is a high level breakdown of the changes and an example.
shouldResolve
/ resolve
- Function signature now provides an instance of
URL
instead of just a string path - Expects a
Request
to be returned
// before
async shouldResolve(url = '/') {
const { userWorkspace } = this.compilation.context;
return fs.existsSync(path.join(userWorkspace, url));
}
async resolve(url = '/') {
const { userWorkspace } = this.compilation.context;
return path.join(userWorkspace, bareUrl));
}
// after
async shouldResolve(url) {
const { userWorkspace } = this.compilation.context;
const { pathname } = url;
try {
await fs.access(new URL(`.${pathname}`, userWorkspace);
return true;
} catch(}{
return false;
}
}
async resolve(url) {
const { pathname } = url;
const { userWorkspace } = this.compilation.context;
return new Request(new URL(`.${pathname}`, userWorkspace));
}
shouldServe
/ serve
- Function signature now provides an instance of
URL
andRequest
- Expects a
Response
to be returned
// before
async shouldServe(url) {
return path.extname(url) === '.css' && fs.existsSync(url);
}
async serve(url) {
const css = await fs.promises.readFile(url, 'utf-8');
resolve({
body: css,
contentType: this.contentType
});
}
// after
async shouldServe(url) {
return url.protocol === 'file:' && this.extensions.indexOf(url.pathname.split('.').pop()) >= 0;
}
async serve(url) {
const body = await fs.readFile(url, 'utf-8');
return new Response(body, {
headers: {
'Content-Type': 'text/css'
}
});
}
shouldIntercept
/ intercept
- Function signature now provides an instance of
URL
,Request
, andResponse
- Expects a
Response
to be returned
// before
async shouldIntercept(url, body, headers = { request: {} }) {
const { originalUrl = '' } = headers.request;
const accept = headers.request.accept || '';
const isCssFile = path.extname(url) === '.css';
const notFromBrowser = accept.indexOf('text/css') < 0 && accept.indexOf('application/signed-exchange') < 0;
// https://github.com/ProjectEvergreen/greenwood/issues/492
const isCssInJs = originalUrl.indexOf('?type=css') >= 0
|| isCssFile && notFromBrowser
|| isCssFile && notFromBrowser && url.indexOf('/node_modules/') >= 0;
return isCssInJs
}
async intercept(url, body) {
const finalBody = body || await fs.promises.readFile(pathToFileURL(url), 'utf-8');
const cssInJsBody = `const css = \`${finalBody.replace(/\r?\n|\r/g, ' ').replace(/\\/g, '\\\\')}\`;\nexport default css;`;
return {
body: cssInJsBody,
contentType: this.contentType
};
}
// after
async shouldIntercept(url, request) {
const { pathname } = url;
const accepts = request.headers.get('accept') || '';
const isCssFile = pathname.split('.').pop() === 'css';
const notFromBrowser = accepts.indexOf('text/css') < 0 && accepts.indexOf('application/signed-exchange') < 0;
// https://github.com/ProjectEvergreen/greenwood/issues/492
const isCssInJs = url.searchParams.has('type') && url.searchParams.get('type') === this.extensions[0]
|| isCssFile && notFromBrowser
|| isCssFile && notFromBrowser && pathname.startsWith('/node_modules/');
return isCssInJs;
}
async intercept(url, request, response) {
const body = await response.text();
const cssInJsBody = `const css = \`${body.replace(/\r?\n|\r/g, ' ').replace(/\\/g, '\\\\')}\`;\nexport default css;`;
return new Response(cssInJsBody, {
headers: new Headers({
'Content-Type': this.contentType
})
});
}
shouldOptimize
/ optimize
- Function signature now provides an instance of
URL
andResponse
- Expects a
Response
to be returned
// before
async shouldOptimize(url) {
return path.extname(url) === '.css' && this.compilation.config.optimization !== 'none'
}
async optimize(url, body) {
return bundleCss(body);
}
// after
async shouldOptimize(url, response) {
const { protocol, pathname } = url;
const isValidCss = pathname.split('.').pop() === 'css'
&& protocol === 'file:'
&& response.headers.get('Content-Type').indexOf('text/css') >= 0;
return this.compilation.config.optimization !== 'none' && isValidCss;
}
async optimize(url, response) {
const body = await response.text();
const optimizedBody = bundleCss(body);
return new Response(optimizedBody);
}
Copy
Now the Copy plugin expects to the to
and from
properties to be URLs
.
For directories, make sure to add a trailing
/
!
// before
[{
// copy a file
from: path.join(context.userWorkspace, 'robots.txt'),
to: path.join(context.outputDir, 'robots.txt')
}, {
// copy a directory
from: path.join(context.userWorkspace, 'pdfs'),
to: path.join(context.outputDir, 'pdfs')
}];
// after
[{
// copy a file
from: new URL('./robots.txt', context.userWorkspace),
to: new URL('./robots.txt', context.outputDir)
}, {
// copy a directory
from: new URL('./pdfs/', context.userWorkspace),
to: new URL('./pdfs/', context.outputDir)
}];
Context (Theme Packs)
For Context plugins, a URL
is now expected for template locations.
// before
import { fileURLToPath } from 'urt';
return {
templates: [
fileURLToPath(new URL('./dist/layouts', import.meta.url))
]
};
// after
return {
templates: [
new URL('./dist/layouts/', import.meta.url)
]
};
Integrations (e.g. WTR)
For custom 3rd party tools like WTR (Web Test Runner), you can still use your resource plugins, updated for the new API. Below are a couple examples for supporting TypeScript and importing CSS-in-JS.
import fs from 'fs/promises';
import { greenwoodPluginImportCss } from '@greenwood/plugin-import-css/src/index.js';
import { greenwoodPluginTypeScript } from '@greenwood/plugin-typescript/src/index.js';
// create a direct instance of ImportCssResource
const importCssResource = greenwoodPluginImportCss()[0].provider({});
// create a direct instance of TypeScriptResource
const typeScriptResource = greenwoodPluginTypeScript()[0].provider({
context: {
projectDirectory: new URL(import.meta.url)
}
});
export default {
plugins: [{
name: 'transpile-typescript',
async transform(context) {
const { url } = context.request;
if (url.endsWith('.ts')) {
const response = await typeScriptResource.serve(new URL(`.${url}`, import.meta.url));
// https...
v0.28.0-alpha.5
Overview
This alpha release improves the relationship between build output and source code, adds a plugin for using WCC's (experimental) JSX transpiling, and some regressions coming out of the last release.
In development docs here, full release blog will come out with the final release.
To adopt alpha releases, you can do the following
# yarn 1.x
$ yarn upgrade @greenwood/cli@alpha
# npm
$ npm install @greenwood/cli@alpha
Changelog
https://github.com/ProjectEvergreen/greenwood/issues?q=label%3Av0.28.0+label%3Aalpha.5
- bundle and optimize server and API routes and serve from output directory (decouple
serve
task from source code) - Create a plugin for import JSX plugin (using WCC)
- break after first found resource match for dev server serve lifecycle
Breaking Changes
greenwood serve
It will now be required to run greenwood build
before running greenwood serve
.
Known Issues
Diff
$ git diff v0.28.0-alpha.4 v0.28.0-alpha.5 --stat | grep -v "www"
.github/CONTRIBUTING.md | 24 ++-
lerna.json | 2 +-
packages/cli/package.json | 6 +-
packages/cli/src/config/rollup.config.js | 74 +++++++-
packages/cli/src/index.js | 6 +-
packages/cli/src/lib/node-modules-utils.js | 2 +-
packages/cli/src/lib/resource-utils.js | 4 +-
packages/cli/src/lib/ssr-route-worker.js | 2 +-
packages/cli/src/lib/templating-utils.js | 201 +++++++++++++++++++++
packages/cli/src/lifecycles/bundle.js | 151 +++++++++++++++-
packages/cli/src/lifecycles/compile.js | 99 +++++++++-
packages/cli/src/lifecycles/config.js | 3 +
packages/cli/src/lifecycles/context.js | 5 +-
packages/cli/src/lifecycles/graph.js | 50 ++++-
packages/cli/src/lifecycles/serve.js | 41 ++---
.../src/plugins/copy/plugin-copy-manifest-json.js | 14 ++
.../src/plugins/copy/plugin-copy-user-templates.js | 21 +++
.../cli/src/plugins/resource/plugin-api-routes.js | 16 +-
.../src/plugins/resource/plugin-standard-html.js | 198 +-------------------
.../cli/src/plugins/server/plugin-livereload.js | 4 +-
.../build.plugins.resource/greenwood.config.js | 7 +-
.../serve.config.static-router.spec.js | 65 ++++++-
.../serve.default.api/serve.default.api.spec.js | 2 +-
.../serve.default.error.spec.js | 52 ++++++
.../serve.default.ssr-prerender.spec.js | 1 +
.../serve.default.ssr-static-export.spec.js | 2 +-
.../serve.default.ssr/serve.default.ssr.spec.js | 3 +-
.../test/cases/serve.default/serve.default.spec.js | 1 +
.../cli/test/cases/serve.spa/serve.spa.spec.js | 1 +
packages/init/package.json | 2 +-
packages/plugin-babel/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/README.md | 61 +++++++
packages/plugin-import-jsx/package.json | 33 ++++
packages/plugin-import-jsx/src/index.js | 43 +++++
.../test/cases/default/default.prerender.spec.js | 87 +++++++++
.../test/cases/default/greenwood.config.js | 7 +
.../test/cases/default/package.json | 5 +
.../test/cases/default/src/components/footer.jsx | 15 ++
.../test/cases/default/src/pages/index.md | 3 +
.../test/cases/default/src/templates/app.html | 12 ++
.../exp-build.prerender.spec.js | 89 +++++++++
.../cases/exp-build.prerender/greenwood.config.js | 8 +
.../test/cases/exp-build.prerender/package.json | 5 +
.../exp-build.prerender/src/components/footer.jsx | 17 ++
.../cases/exp-build.prerender/src/pages/index.md | 3 +
.../exp-build.prerender/src/templates/app.html | 12 ++
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 +-
.../{build.default => serve.default}/artists.json | 0
.../greenwood.config.js | 0
.../{build.default => serve.default}/package.json | 0
.../serve.default.spec.js} | 5 +-
.../src/components/footer.js | 0
.../src/components/greeting.js | 0
.../src/pages/artists.js | 4 +-
.../src/pages/users.js | 0
.../src/templates/app.html | 0
packages/plugin-renderer-puppeteer/package.json | 4 +-
packages/plugin-typescript/package.json | 4 +-
yarn.lock | 33 +++-
70 files changed, 1247 insertions(+), 314 deletions(-)
v0.28.0-alpha.4
Overview
This alpha release restores original rollup bundling logic and introduces support for <audio>
and <video>
formats.
In development docs here, full release blog will come out with the final release.
To adopt alpha releases, you can do the following
# yarn 1.x
$ yarn upgrade @greenwood/cli@alpha
# npm
$ npm install @greenwood/cli@alpha
Changelog
https://github.com/ProjectEvergreen/greenwood/issues?q=label%3Av0.28.0+label%3Aalpha.4
Breaking Changes
ESM
To be compliant with the ESM spec, all your files referenced within JavaScript must start with a .
. Using a /
is not part of the spec.
<script>
// before
import { foo } from '/some/thing.js';
// after
import { foo } from '../some/thing.js';
</script>
Known Issues
Diff
$ git diff v0.28.0-alpha.3 v0.28.0-alpha.4 --stat | grep -v "www"
.gitattributes | 13 ++-
.github/workflows/ci-exp.yml | 2 +-
.github/workflows/ci-win-exp.yml | 2 +-
.github/workflows/ci-win.yml | 2 +-
.github/workflows/ci.yml | 2 +-
.github/workflows/master.yml | 2 +-
.github/workflows/release.yml | 2 +-
.gitignore | 1 +
lerna.json | 2 +-
packages/cli/package.json | 5 +-
packages/cli/src/config/rollup.config.js | 9 +-
packages/cli/src/lifecycles/copy.js | 24 ++---
packages/cli/src/lifecycles/serve.js | 27 +++++-
.../src/plugins/resource/plugin-standard-audio.js | 76 +++++++++++++++
.../src/plugins/resource/plugin-standard-video.js | 78 +++++++++++++++
.../cases/develop.default/develop.default.spec.js | 106 +++++++++++++++++----
.../develop.default/src/assets/song-sample.mp3 | Bin 0 -> 5709921 bytes
.../develop.default/src/assets/splash-clip.mp4 | Bin 0 -> 2636174 bytes
.../test/cases/serve.default/serve.default.spec.js | 98 ++++++++++++++++++-
.../cases/serve.default/src/assets/song-sample.mp3 | Bin 0 -> 5709921 bytes
.../cases/serve.default/src/assets/splash-clip.mp4 | Bin 0 -> 2636174 bytes
packages/init/package.json | 5 +-
packages/plugin-babel/package.json | 7 +-
packages/plugin-google-analytics/package.json | 7 +-
packages/plugin-graphql/README.md | 2 +-
packages/plugin-graphql/package.json | 7 +-
.../cases/query-custom-schema/src/pages/index.html | 2 +-
packages/plugin-import-commonjs/package.json | 7 +-
packages/plugin-import-css/package.json | 7 +-
packages/plugin-import-json/package.json | 7 +-
packages/plugin-include-html/package.json | 7 +-
packages/plugin-polyfills/package.json | 7 +-
packages/plugin-postcss/package.json | 7 +-
packages/plugin-renderer-lit/package.json | 7 +-
packages/plugin-renderer-puppeteer/package.json | 7 +-
packages/plugin-typescript/package.json | 7 +-
38 files changed, 447 insertions(+), 101 deletions(-)
v0.27.5
Overview
This patch release fixes an issue with the GraphQL plugin wherein the <script>
tag for Apollo data was not correctly nested inside the <head>
tag.
If using Yarn, you can can upgrade all your @greenwood packages at once
$ yarn upgrade --scope @greenwood --latest
Changelog
https://github.com/ProjectEvergreen/greenwood/issues?q=label%3Av0.27.5
- GraphQL plugin data
<script>
tag is being inserted before the opening<head>
tag - thanks @Yasir761 🚀
Breaking Changes
N / A
Known Issues
N / A
Diff
$ git diff v0.27.3 v0.27.4 --stat | grep -v "www"
lerna.json | 2 +-
packages/cli/package.json | 2 +-
packages/init/package.json | 2 +-
packages/plugin-babel/package.json | 4 ++--
packages/plugin-google-analytics/package.json | 4 ++--
packages/plugin-graphql/package.json | 4 ++--
packages/plugin-graphql/src/index.js | 2 +-
.../plugin-graphql/test/cases/query-children/query-children.spec.js | 2 +-
packages/plugin-graphql/test/cases/query-config/query-config.spec.js | 2 +-
.../cases/query-custom-frontmatter/query-custom-frontmatter.spec.js | 2 +-
.../test/cases/query-custom-schema/query-custom-schema.spec.js | 2 +-
packages/plugin-graphql/test/cases/query-graph/query-graph.spec.js | 2 +-
packages/plugin-graphql/test/cases/query-menu/query-menu.spec.js | 2 +-
packages/plugin-import-commonjs/package.json | 4 ++--
packages/plugin-import-css/package.json | 4 ++--
packages/plugin-import-json/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 ++--
23 files changed, 35 insertions(+), 35 deletions(-)
v0.28.0-alpha.3
Overview
This alpha release for the v0.28.0 line aims to fix a regression with serving prerendered or statically exported SSR content.
In development docs here, full release blog will come out with the final release.
If using Yarn, you can can upgrade all your @greenwood packages at once
$ yarn upgrade --scope @greenwood --latest
Changelog
https://github.com/ProjectEvergreen/greenwood/issues?q=label%3Av0.28.0+label%3Aalpha.3
Breaking Changes
N / A
Known Issues
N / A
Diff
$ git diff v0.28.0-alpha.2 v0.28.0-alpha.3 --stat | grep -v "www"
lerna.json | 2 +-
packages/cli/package.json | 2 +-
packages/cli/src/commands/serve.js | 4 +-
packages/cli/src/lifecycles/serve.js | 6 +-
.../build.default.ssr-prerender.spec.js | 4 +-
.../build.default.ssr-static-export.spec.js | 21 +-
.../greenwood.config.js | 3 +
.../serve.default.ssr-prerender.spec.js | 118 ++++++++++
.../src/components/footer.js | 16 ++
.../serve.default.ssr-prerender/src/pages/index.js | 7 +
.../src/templates/app.html | 13 ++
.../serve.default.ssr-static-export/package.json | 6 +
.../serve.default.ssr-static-export.spec.js | 246 +++++++++++++++++++++
.../src/components/counter.js | 0
.../src/components/footer.js | 49 ++++
.../src/pages/artists.js | 90 ++++++++
.../src/pages/index.md | 3 +
.../src/templates/app.html | 13 ++
.../greenwood.config.js | 0
.../serve.default.ssr.spec.js} | 8 +-
.../src/components/card.js | 0
.../serve.default.ssr/src/components/counter.js | 42 ++++
.../src/pages/about.md | 0
.../src/pages/artists.js | 0
.../src/pages/index.js | 0
.../src/pages/users.js | 0
.../src/templates/app.html | 0
packages/init/package.json | 2 +-
packages/plugin-babel/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-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 +-
41 files changed, 659 insertions(+), 46 deletions(-)
v0.27.4
Overview
This patch release fixes an issue with staticRouter
configuration to make it more cross-browser compatible after a recent change in behavior from a Chrome update.
If using Yarn, you can can upgrade all your @greenwood packages at once
$ yarn upgrade --scope @greenwood --latest
Changelog
https://github.com/ProjectEvergreen/greenwood/issues?q=label%3Av0.27.4
- static router not working on Chrome / Edge browsers (anymore)
- make router standards compliant with consistent cross browser support
Breaking Changes
N / A
Known Issues
N / A
Diff
$ git diff v0.27.3 v0.27.4 --stat | grep -v "www"
greenwood.config.js | 1 -
lerna.json | 2 +-
packages/cli/package.json | 2 +-
packages/cli/src/lib/router.js | 13 +++----
packages/init/package.json | 2 +-
packages/plugin-babel/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-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 +--
test/smoke-test.js | 2 +-
23 files changed, 36 insertions(+), 84 deletions(-)
v0.28.0-alpha.2
Overview
This alpha release for the v0.28.0 line aims to fix some bugs identified with the previous release as well as including some refactoring and enhancements.
In development docs here, full release blog will come out with the final release.
If using Yarn, you can can upgrade all your @greenwood packages at once
$ yarn upgrade --scope @greenwood --latest
Changelog
https://github.com/ProjectEvergreen/greenwood/issues?q=label%3Av0.28.0+label%3Aalpha.2
- API calls are getting treated as API routes with the
serve
command - SPA fallback handling not working
- correctly name standard resource plugins
- remove setMaxListeners suppression call
Breaking Changes
N / A
Known Issues
Diff
git diff v0.28.0-alpha.1 v0.28.0-alpha.2 --stat | grep -v "www"
lerna.json | 2 +-
packages/cli/package.json | 2 +-
packages/cli/src/commands/serve.js | 3 +-
packages/cli/src/index.js | 4 -
packages/cli/src/lib/resource-utils.js | 2 +-
packages/cli/src/lifecycles/serve.js | 21 ++-
.../src/plugins/resource/plugin-standard-font.js | 2 +-
.../src/plugins/resource/plugin-standard-html.js | 3 +-
.../src/plugins/resource/plugin-standard-image.js | 8 +-
.../src/plugins/resource/plugin-standard-json.js | 2 +-
.../cli/test/cases/develop.spa/develop.spa.spec.js | 40 ++++-
packages/cli/test/cases/develop.spa/src/main.css | 3 +
.../test/cases/serve.default/serve.default.spec.js | 35 ++++
.../cli/test/cases/serve.spa/serve.spa.spec.js | 192 +++++++++++++++++++++
packages/cli/test/cases/serve.spa/src/index.html | 12 ++
packages/init/package.json | 2 +-
packages/plugin-babel/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-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 +-
29 files changed, 333 insertions(+), 50 deletions(-)
v0.28.0-alpha.1
Overview
This alpha release for the v0.28.0 line introduces a big refactor throughout Greenwood to adopt more Web APIs where possible, like URL
/ Request
/ Response
.
In development docs here, full release blog will come out with the final release.
If using Yarn, you can can upgrade all your @greenwood packages at once
$ yarn upgrade --scope @greenwood --latest
Changelog
https://github.com/ProjectEvergreen/greenwood/issues?q=label%3Av0.28.0+label%3Aalpha.1
- Standardize on Web APIs (
Request
/Response
/URL
/ etc) - Standardize mapping of browser URLs to file paths (for Resource plugins)
Breaking Changes
There are a few breaking changes in this release due to the adoption of more web standard APIs.
greenwood.config.js
Workspace
You can now pass in a URL object directly instead of having to convert it to a path
import { fileURLToPath } from 'url';
// before
export default {
workspace: fileURLToPath(new URL('./www', import.meta.url))
};
// after
export default {
workspace: new URL('./www', import.meta.url)
};
devServer.extensions
No period (.
) is needed when passing in custom extensions.
// before
extensions: ['.txt', '.rtf']
// after
extensions: ['txt', 'rtf']
Plugins
Resource
Resource plugins have had their lifecycle signatures and return types refactored to align exclusively with Web APIs. The docs have been updated with more in depth examples so it is recommended to review those, but otherwise the business logic of those lifecycles should still apply. Below is a high level breakdown of the changes and an example.
shouldResolve
/ resolve
- Function signature now provides an instance of
URL
instead of just a string path - Expects a
Request
to be returned
// before
async shouldResolve(url = '/') {
const { userWorkspace } = this.compilation.context;
return fs.existsSync(path.join(userWorkspace, url));
}
async resolve(url = '/') {
const { userWorkspace } = this.compilation.context;
return path.join(userWorkspace, bareUrl));
}
// after
async shouldResolve(url) {
const { userWorkspace } = this.compilation.context;
const { pathname } = url;
try {
await fs.access(new URL(`.${pathname}`, userWorkspace);
return true;
} catch(}{
return false;
}
}
async resolve(url) {
const { pathname } = url;
const { userWorkspace } = this.compilation.context;
return new Request(new URL(`.${pathname}`, userWorkspace));
}
shouldServe
/ serve
- Function signature now provides an instance of
URL
andRequest
- Expects a
Response
to be returned
// before
async shouldServe(url) {
return path.extname(url) === '.css' && fs.existsSync(url);
}
async serve(url) {
const css = await fs.promises.readFile(url, 'utf-8');
resolve({
body: css,
contentType: this.contentType
});
}
// after
async shouldServe(url) {
return url.protocol === 'file:' && this.extensions.indexOf(url.pathname.split('.').pop()) >= 0;
}
async serve(url) {
const body = await fs.readFile(url, 'utf-8');
return new Response(body, {
headers: {
'Content-Type': 'text/css'
}
});
}
shouldIntercept
/ intercept
- Function signature now provides an instance of
URL
,Request
, andResponse
- Expects a
Response
to be returned
// before
async shouldIntercept(url, body, headers = { request: {} }) {
const { originalUrl = '' } = headers.request;
const accept = headers.request.accept || '';
const isCssFile = path.extname(url) === '.css';
const notFromBrowser = accept.indexOf('text/css') < 0 && accept.indexOf('application/signed-exchange') < 0;
// https://github.com/ProjectEvergreen/greenwood/issues/492
const isCssInJs = originalUrl.indexOf('?type=css') >= 0
|| isCssFile && notFromBrowser
|| isCssFile && notFromBrowser && url.indexOf('/node_modules/') >= 0;
return isCssInJs
}
async intercept(url, body) {
const finalBody = body || await fs.promises.readFile(pathToFileURL(url), 'utf-8');
const cssInJsBody = `const css = \`${finalBody.replace(/\r?\n|\r/g, ' ').replace(/\\/g, '\\\\')}\`;\nexport default css;`;
return {
body: cssInJsBody,
contentType: this.contentType
};
}
// after
async shouldIntercept(url, request) {
const { pathname } = url;
const accepts = request.headers.get('accept') || '';
const isCssFile = pathname.split('.').pop() === 'css';
const notFromBrowser = accepts.indexOf('text/css') < 0 && accepts.indexOf('application/signed-exchange') < 0;
// https://github.com/ProjectEvergreen/greenwood/issues/492
const isCssInJs = url.searchParams.has('type') && url.searchParams.get('type') === this.extensions[0]
|| isCssFile && notFromBrowser
|| isCssFile && notFromBrowser && pathname.startsWith('/node_modules/');
return isCssInJs;
}
async intercept(url, request, response) {
const body = await response.text();
const cssInJsBody = `const css = \`${body.replace(/\r?\n|\r/g, ' ').replace(/\\/g, '\\\\')}\`;\nexport default css;`;
return new Response(cssInJsBody, {
headers: new Headers({
'Content-Type': this.contentType
})
});
}
shouldOptimize
/ optimize
- Function signature now provides an instance of
URL
andResponse
- Expects a
Response
to be returned
// before
async shouldOptimize(url) {
return path.extname(url) === '.css' && this.compilation.config.optimization !== 'none'
}
async optimize(url, body) {
return bundleCss(body);
}
// after
async shouldOptimize(url, response) {
const { protocol, pathname } = url;
const isValidCss = pathname.split('.').pop() === 'css'
&& protocol === 'file:'
&& response.headers.get('Content-Type').indexOf('text/css') >= 0;
return this.compilation.config.optimization !== 'none' && isValidCss;
}
async optimize(url, response) {
const body = await response.text();
const optimizedBody = bundleCss(body);
return new Response(optimizedBody);
}
Copy
Now the Copy plugin expects to the to
and from
properties to be URLs
.
For directories, make sure to add a trailing
/
!
// before
[{
// copy a file
from: path.join(context.userWorkspace, 'robots.txt'),
to: path.join(context.outputDir, 'robots.txt')
}, {
// copy a directory
from: path.join(context.userWorkspace, 'pdfs'),
to: path.join(context.outputDir, 'pdfs')
}];
// after
[{
// copy a file
from: new URL('./robots.txt', context.userWorkspace),
to: new URL('./robots.txt', context.outputDir)
}, {
// copy a directory
from: new URL('./pdfs/', context.userWorkspace),
to: new URL('./pdfs/', context.outputDir)
}];
Context (Theme Packs)
For Context plugins, a URL
is now expected for template locations.
// before
import { fileURLToPath } from 'urt';
return {
templates: [
fileURLToPath(new URL('./dist/layouts', import.meta.url))
]
};
// after
return {
templates: [
new URL('./dist/layouts/', import.meta.url)
]
};
Integrations (e.g. WTR)
For custom 3rd party tools like WTR (Web Test Runner), you can still use your resource plugins, updated for the new API. Below are a couple examples for supporting TypeScript and importing CSS-in-JS.
import fs from 'fs/promises';
import { greenwoodPluginImportCss } from '@greenwood/plugin-import-css/src/index.js';
import { greenwoodPluginTypeScript } from '@greenwood/plugin-typescript/src/index.js';
// create a direct instance of ImportCssResource
const importCssResource = greenwoodPluginImportCss()[0].provider({});
// create a direct instance of TypeScriptResource
const typeScriptResource = greenwoodPluginTypeScript()[0].provider({
context: {
projectDirectory: new URL(import.meta.url)
}
});
export default {
plugins: [{
name: 'transpile-typescript',
async transform(context) {
const { url } = context.request;
if (url.endsWith('.ts')) {
const response = await typeScriptResource.serve(new URL(`.${url}`, import.meta.url));
// https://github.com/ProjectEvergreen/greenwood/issues/661
const body = (await response.text()).replace(/\/\/# sourceMappingURL=module.js.map/, '');
return {
body,
type: 'js'
};
}
}
}, {
name: 'import-css',
async transform(context) {
const url = new URL(`.${context.request.url}`, import.meta.url);
const request = new Request(url, { headers: new Headers(context.headers) });
const shouldIntercept = await importCssResource.shouldIntercept(url, request);
if (shouldIntercept) {
const contents = await fs.readFile(url);
const initResponse = new Response(contents, { headers: new Headers(context.headers) });
const response = await importCssResource.intercept(url, request, initResponse.clone());
return {
body: await response.text(),
headers: {
'Content-Type': response.headers.get...