You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* chore(ci): enable ci for v4 dev (#4433)
this commit enables browserstack for the v4 development branch
* chore(compiler): remove dynamicImportShim (#4420)
* remove dynamicImportShim
* remove `dynamicImportShim` references from some tests
* add field removal to breaking changes
* chore(compiler): remove safari10 extras flag (#4421)
* remove safari10 extras flag
* remove `safari10` references in some tests
* add field removal to breaking changes
* chore(compiler/runtime): remove CSS var shim & patchEsm() (#4419)
* remove CSS var shim & patchEsm
* remove `cssVarShim` references from some tests
* remove some errant code
* add field removal to breaking changes
* fix build error
* 🎬 v4.0.0-beta.0
* chore(compiler/runtime): remove shadow dom shim (#4440)
* chore(ci): enable ci for v4 dev (#4433)
this commit enables browserstack for the v4 development branch
* chore(compiler): remove dynamicImportShim (#4420)
* remove dynamicImportShim
* remove `dynamicImportShim` references from some tests
* add field removal to breaking changes
* chore(compiler): remove safari10 extras flag (#4421)
* remove safari10 extras flag
* remove `safari10` references in some tests
* add field removal to breaking changes
* chore(compiler/runtime): remove CSS var shim & patchEsm() (#4419)
* remove CSS var shim & patchEsm
* remove `cssVarShim` references from some tests
* remove some errant code
* add field removal to breaking changes
* fix build error
* 🎬 v4.0.0-beta.0
* remove public-facing shadowDomShim option
* missed one
* update todo comments
---------
Co-authored-by: Ryan Waskiewicz <ryanwaskiewicz@gmail.com>
* 🐐 v4.0.0-beta.1
* refactor(many): remove in-browser compilation support (#4317)
This removes in-browser compilation support from Stencil. Doing so
involves a number of changes, including:
- removing the rollup plugin which polyfills node.js built-in modules
(fs, path, etc) for use in the browser
- deleting the code for the polyfills themselves (found in
src/compiler/sys/modules)
- miscellaneous refactors related to tests for browser vs node
environment as well as testing
There will be more follow-up work to fully address this stuff, but this
makes the minimal change to remove browser support for Stencil.
* 👻 v4.0.0-beta.2
* chore(props): removal of deprecated connect and context APIs (#4437)
BREAKING CHANGE: this removes the connect and context APIs which have been deprecated since Stencil v1
This means that the following code will no longer work.
```ts
@prop({ context: 'config' }) config: Config;
@prop({ connect: 'ion-menu-controller' }) lazyMenuCtrl: Lazy<MenuController>;
```
* chore(deps): remove unused hash.js dependency
* chore(deps): remove unused path-browserify dependency
* chore(deps): remove unused process dependency
* chore(deps): remove unused assert dependency
* remove node 14 from CI matrices
* bump min node versions across core
* update `rmDir`/`rmDirSync` to `rm`/`rmSync`
This commit updates some calls to Node fs module functions to follow recommended approaches after deprecations were added for `{ recursive: true }` on `rmDir` and `rmDirSync`
* make node versions consistent
* bump @types/node & lockfile versions
---------
Co-authored-by: Ryan Waskiewicz <ryanwaskiewicz@gmail.com>
Co-authored-by: Alice <alice.writes.wrongs@gmail.com>
Co-authored-by: Jess <jess@jessicasachs.io>
0 commit comments