vue3-yuanma/packages/reactivity/src
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
..
baseHandlers.ts refactor(reactivity): make readonly non-tracking 2020-04-14 23:49:46 -04:00
collectionHandlers.ts refactor(reactivity): make readonly non-tracking 2020-04-14 23:49:46 -04:00
computed.ts fix(types): ref value type unwrapping should happen at creation time 2020-02-25 19:44:06 -05:00
effect.ts fix(scheduler): sort jobs before flushing 2020-04-14 17:31:35 -04:00
index.ts refactor(reactivity): adjust APIs 2020-04-15 16:45:20 -04:00
operations.ts refactor(reactivity): separate track and trigger operation types 2019-12-03 11:30:24 -05:00
reactive.ts refactor(reactivity): adjust APIs 2020-04-15 16:45:20 -04:00
ref.ts fix(reactivity): remove Symbol.observable (#968) 2020-04-16 09:33:30 -04:00