Commit 82f4eaa 1 parent 52e0830 commit 82f4eaa Copy full SHA for 82f4eaa
File tree 3 files changed +7
-2
lines changed
3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -5,12 +5,12 @@ import path from 'path'
5
5
import crypto from 'crypto'
6
6
import chokidar from 'chokidar'
7
7
import postcss from 'postcss'
8
- import hash from 'object-hash'
9
8
import dlv from 'dlv'
10
9
import selectorParser from 'postcss-selector-parser'
11
10
import LRU from 'quick-lru'
12
11
import normalizePath from 'normalize-path'
13
12
13
+ import hash from '../../util/hashConfig'
14
14
import transformThemeValue from '../../util/transformThemeValue'
15
15
import parseObjectStyles from '../../util/parseObjectStyles'
16
16
import getModuleDependencies from '../../lib/getModuleDependencies'
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import processPlugins from './util/processPlugins'
16
16
import cloneNodes from './util/cloneNodes'
17
17
import { issueFlagNotices } from './featureFlags.js'
18
18
19
- import hash from 'object-hash '
19
+ import hash from './util/hashConfig '
20
20
import log from './util/log'
21
21
import { shared } from './util/disposables'
22
22
Original file line number Diff line number Diff line change
1
+ import hash from 'object-hash'
2
+
3
+ export default function hashConfig ( config ) {
4
+ return hash ( config , { ignoreUnknown : true } )
5
+ }
You can’t perform that action at this time.
0 commit comments