File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
Expand file tree Collapse file tree 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'
55import crypto from 'crypto'
66import chokidar from 'chokidar'
77import postcss from 'postcss'
8- import hash from 'object-hash'
98import dlv from 'dlv'
109import selectorParser from 'postcss-selector-parser'
1110import LRU from 'quick-lru'
1211import normalizePath from 'normalize-path'
1312
13+ import hash from '../../util/hashConfig'
1414import transformThemeValue from '../../util/transformThemeValue'
1515import parseObjectStyles from '../../util/parseObjectStyles'
1616import getModuleDependencies from '../../lib/getModuleDependencies'
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import processPlugins from './util/processPlugins'
1616import cloneNodes from './util/cloneNodes'
1717import { issueFlagNotices } from './featureFlags.js'
1818
19- import hash from 'object-hash '
19+ import hash from './util/hashConfig '
2020import log from './util/log'
2121import { shared } from './util/disposables'
2222
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