vue3-yuanma/packages/template-explorer
Cédric Exbrayat 4d014dc3d3
fix(reactivity): remove Symbol.observable (#968)
* chore: add @types/node as an explicit dependency

As `tsconfig.json` references it, it should be listed in the dependencies.
It currently uses an older version: this commit also bumps to the latest v12 version, and fixes a typing issue.

* fix(reactivity): remove Symbol.observable

`Symbol.observable` is brought by `@types/node@12` and is not a "well-known" typescript symbol https://www.typescriptlang.org/docs/handbook/symbols.html that can be find in lib.es20xx like the others. It has been removed in `@types/node@v13`.
It means that an application using vue@3.0.0-alpha.13 does not compile unless it explicitely adds `@types/node@v12` as a dependency and `node` in its own tsconfig types.
2020-04-16 09:33:30 -04:00
..
src fix(reactivity): remove Symbol.observable (#968) 2020-04-16 09:33:30 -04:00
index.html chore(template-explorer): bump monaco version for live deployed page 2020-03-06 12:02:38 -05:00
local.html feat(compiler-core): switch to @babel/parser for expression parsing 2020-02-27 16:53:51 -05:00
package.json release: v3.0.0-alpha.13 2020-04-15 12:46:26 -04:00
README.md workflow: improve template-explorer local load speed 2020-02-06 10:22:16 -05:00
style.css refactor(compiler): prefix all imported helpers to avoid scope collision 2020-02-07 18:53:39 -05:00

Template Explorer

Live explorer for template compilation output.

To run:

  • yarn dev-compiler
  • When the compilation is done, in another terminal run yarn open

Note: index.html uses CDN for dependencies and is continuously deployed at https://vue-next-template-explorer.netlify.com/. For local development, use the scripts above.