From f23e93b0ce59dbf3a0b1d1c7ef26122e65c44378 Mon Sep 17 00:00:00 2001 From: Marcus Bodin Date: Fri, 14 Aug 2020 17:34:10 +0200 Subject: [PATCH] docs(changelog): example to restore 1.x defaults (#2637) --- CHANGELOG.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1bca92cc8d..136d8c432c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,6 +32,20 @@ _Note that the runtime still works for any collections that have been built with Update taskQueue default to "async". Stencil 1 default was "congestionAsync". See [config.taskQueue](https://stenciljs.com/docs/config#taskqueue) for more info. +### Restore Stencil 1 defaults +```ts +export const config: Config = { + buildEs5: 'prod', + extras: { + cssVarsShim: true, + dynamicImportShim: true, + safari10: true, + shadowDomShim: true, + } +}; +``` + + ### NodeJS Update * **node:** minimum node 12.10.0, recommend 14.5.0 ([55331be](https://github.com/ionic-team/stencil/commit/55331be42f311a6e2a4e4f8ac13c01d28dc31613))