Skip to content

Commit 979a841

Browse files
committed
chore: use consistent file naming
1 parent eae7c24 commit 979a841

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

packages/reactivity/src/computed.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { ReactiveEffect } from './effect'
22
import { Ref, trackRefValue, triggerRefValue } from './ref'
33
import { isFunction, NOOP } from '@vue/shared'
44
import { ReactiveFlags, toRaw } from './reactive'
5-
import { Dep } from './Dep'
5+
import { Dep } from './dep'
66

77
export interface ComputedRef<T = any> extends WritableComputedRef<T> {
88
readonly value: T
File renamed without changes.

packages/reactivity/src/effect.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
initDepMarkers,
99
newTracked,
1010
wasTracked
11-
} from './Dep'
11+
} from './dep'
1212

1313
// The main WeakMap that stores {target -> key -> dep} connections.
1414
// Conceptually, it's easier to think of a dependency as a Dep class

packages/reactivity/src/ref.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { TrackOpTypes, TriggerOpTypes } from './operations'
33
import { isArray, isObject, hasChanged } from '@vue/shared'
44
import { reactive, isProxy, toRaw, isReactive } from './reactive'
55
import { CollectionTypes } from './collectionHandlers'
6-
import { createDep, Dep } from './Dep'
6+
import { createDep, Dep } from './dep'
77

88
export declare const RefSymbol: unique symbol
99

0 commit comments

Comments
 (0)