Update npm packages (73 packages including @jqhtml 2.3.36)
Update npm registry domain from privatenpm.hanson.xyz to npm.internal.hanson.xyz 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
12
node_modules/autoprefixer/lib/hacks/grid-utils.js
generated
vendored
12
node_modules/autoprefixer/lib/hacks/grid-utils.js
generated
vendored
@@ -135,13 +135,14 @@ exports.prefixTrackValue = prefixTrackValue
|
||||
function prefixTrackValue({ gap, value }) {
|
||||
let result = parser(value).nodes.reduce((nodes, node) => {
|
||||
if (node.type === 'function' && node.value === 'repeat') {
|
||||
return nodes.concat({
|
||||
nodes.push({
|
||||
type: 'word',
|
||||
value: transformRepeat(node, { gap })
|
||||
})
|
||||
return nodes
|
||||
}
|
||||
if (gap && node.type === 'space') {
|
||||
return nodes.concat(
|
||||
nodes.push(
|
||||
{
|
||||
type: 'space',
|
||||
value: ' '
|
||||
@@ -152,8 +153,10 @@ function prefixTrackValue({ gap, value }) {
|
||||
},
|
||||
node
|
||||
)
|
||||
return nodes
|
||||
}
|
||||
return nodes.concat(node)
|
||||
nodes.push(node)
|
||||
return nodes
|
||||
}, [])
|
||||
|
||||
return parser.stringify(result)
|
||||
@@ -1046,7 +1049,8 @@ function normalizeRowColumn(str) {
|
||||
if (node.type === 'space') {
|
||||
return result
|
||||
}
|
||||
return result.concat(parser.stringify(node))
|
||||
result.push(parser.stringify(node))
|
||||
return result
|
||||
}, [])
|
||||
|
||||
return normalized
|
||||
|
||||
Reference in New Issue
Block a user