Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
borulday committed Jun 10, 2024
1 parent fee0773 commit e4b6232
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions packages/base-extension/codeGenerators/color.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import {
} from "zeplin-extension-style-kit/utils";

const MODE_SEPARATOR = "\n\n";
const COMMENT_STARTS = "/* ";
const COMMENT_ENDS = " */";
const COMMENT_START = "/* ";
const COMMENT_END = " */";

export const colorCodeGenerator = ({
language,
Expand Down Expand Up @@ -54,7 +54,7 @@ export const colorCodeGenerator = ({
`${colorSectionName
? variableSeparator
: ""
}${COMMENT_STARTS}${adjustedColorSectionName}${COMMENT_ENDS}`
}${COMMENT_START}${adjustedColorSectionName}${COMMENT_END}`
);

colorSectionName = adjustedColorSectionName;
Expand Down
2 changes: 1 addition & 1 deletion packages/zeplin-css-extension/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { COPYRIGHT } from "./constants";

const exportPrefix = `${COPYRIGHT}\n\n`;

const INDENTATION = " ";
const INDENTATION = " ";

export default createExtension({
language: "css",
Expand Down
2 changes: 1 addition & 1 deletion packages/zeplin-less-extension/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { COPYRIGHT } from "./constants";

const exportPrefix = `${COPYRIGHT}\n\n`;

const INDENTATION = " ";
const INDENTATION = " ";

export default createExtension({
language: "less",
Expand Down
2 changes: 1 addition & 1 deletion packages/zeplin-sass-extension/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { COPYRIGHT } from "./constants";

const exportPrefix = `${COPYRIGHT}\n\n`;

const INDENTATION = " ";
const INDENTATION = " ";

export default createExtension({
language: "sass",
Expand Down
2 changes: 1 addition & 1 deletion packages/zeplin-scss-extension/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { COPYRIGHT } from "./constants";

const exportPrefix = `${COPYRIGHT}\n\n`;

const INDENTATION = " ";
const INDENTATION = " ";

export default createExtension({
language: "scss",
Expand Down
2 changes: 1 addition & 1 deletion packages/zeplin-stylus-extension/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { COPYRIGHT } from "./constants";

const exportPrefix = `${COPYRIGHT}\n\n`;

const INDENTATION = " ";
const INDENTATION = " ";

export default createExtension({
language: "stylus",
Expand Down

0 comments on commit e4b6232

Please sign in to comment.