Skip to content
This repository was archived by the owner on Apr 30, 2021. It is now read-only.

Commit bb9034f

Browse files
committed
Add missing comma
1 parent 6c3de62 commit bb9034f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/resolve-value.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const resolveValue = ( decl, map, { ignorePseudoScope = false, _debugIsInternal
4040
usage: {
4141
selector: decl.parent.selector,
4242
property: decl.prop,
43-
defaultValue: defaultValue.join(),
43+
defaultValue: defaultValue.join(','),
4444
},
4545
} );
4646
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postcss-css-variables-extract",
3-
"version": "0.1.0",
3+
"version": "0.1.2",
44
"description": "PostCSS plugin to transform CSS Custom Properties(CSS variables) syntax into a static representation, with some added scripts to extract locations in scss files.",
55
"keywords": [
66
"postcss",

0 commit comments

Comments
 (0)