File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,8 @@ bower_components
32
32
# Compiled binary addons (https://nodejs.org/api/addons.html)
33
33
build /Release
34
34
35
+ .DS_Store
36
+
35
37
# Dependency directories
36
38
node_modules /
37
39
jspm_packages /
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ export const generateSvgConstant = (
30
30
) : string => {
31
31
return `export const ${ variableName } : ${ interfaceName } = {
32
32
name: '${ filenameWithoutEnding } ',
33
- data: ' ${ data } '
33
+ data: \` ${ data } \`
34
34
};` ;
35
35
} ;
36
36
@@ -46,7 +46,7 @@ export const generateSvgConstantWithImport = (
46
46
47
47
export const ${ variableName } : ${ interfaceName } = {
48
48
name: '${ filenameWithoutEnding } ',
49
- data: ' ${ data } '
49
+ data: \` ${ data } \`
50
50
};` ;
51
51
} ;
52
52
@@ -58,7 +58,7 @@ export const generateSvgStandaloneFile = (
58
58
) : string => {
59
59
return `export const ${ variableName } : ${ interfaceName } = {
60
60
name: '${ filenameWithoutEnding } ',
61
- data: ' ${ data } '
61
+ data: \` ${ data } \`
62
62
};` ;
63
63
} ;
64
64
You can’t perform that action at this time.
0 commit comments