]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: use consistent file naming
authorEvan You <yyx990803@gmail.com>
Wed, 7 Jul 2021 18:37:28 +0000 (14:37 -0400)
committerEvan You <yyx990803@gmail.com>
Fri, 16 Jul 2021 18:30:49 +0000 (14:30 -0400)
packages/reactivity/src/computed.ts
packages/reactivity/src/dep.ts [moved from packages/reactivity/src/Dep.ts with 100% similarity]
packages/reactivity/src/effect.ts
packages/reactivity/src/ref.ts

index 55316d9b51a286f00883f6b81434e5d31eee5cf2..514405970a6e822cc89d0c93c2f0f98a7235dfa0 100644 (file)
@@ -2,7 +2,7 @@ import { ReactiveEffect } from './effect'
 import { Ref, trackRefValue, triggerRefValue } from './ref'
 import { isFunction, NOOP } from '@vue/shared'
 import { ReactiveFlags, toRaw } from './reactive'
-import { Dep } from './Dep'
+import { Dep } from './dep'
 
 export interface ComputedRef<T = any> extends WritableComputedRef<T> {
   readonly value: T
index 3a7271427022ab74e9420789fa1d22a0f7eff91a..e602e369d39c6142263c472581bc23c0e4a9f70d 100644 (file)
@@ -8,7 +8,7 @@ import {
   initDepMarkers,
   newTracked,
   wasTracked
-} from './Dep'
+} from './dep'
 
 // The main WeakMap that stores {target -> key -> dep} connections.
 // Conceptually, it's easier to think of a dependency as a Dep class
index 318bf59c6aacb9fa21e4bea12cb2824f0cf834c2..5648bb264ca47faacdfd024ca3d8929b4a24f76c 100644 (file)
@@ -3,7 +3,7 @@ import { TrackOpTypes, TriggerOpTypes } from './operations'
 import { isArray, isObject, hasChanged } from '@vue/shared'
 import { reactive, isProxy, toRaw, isReactive } from './reactive'
 import { CollectionTypes } from './collectionHandlers'
-import { createDep, Dep } from './Dep'
+import { createDep, Dep } from './dep'
 
 export declare const RefSymbol: unique symbol