Skip to content

Commit

Permalink
Fix src access
Browse files Browse the repository at this point in the history
  • Loading branch information
t3chguy committed Oct 2, 2023
1 parent aab177f commit 0233a2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ limitations under the License.

import fs from "fs";
import { isBinaryExpression, isStringLiteral, isTemplateLiteral, Node } from "@babel/types";
import { KEY_SEPARATOR, Translation, Translations } from "../src";
import type { Translation, Translations } from "../src";

export const NESTING_KEY = process.env["NESTING_KEY"] || KEY_SEPARATOR;
export const NESTING_KEY = process.env["NESTING_KEY"] || "|";
export const INPUT_FILE = process.env["INPUT_FILE"] || 'src/i18n/strings/en_EN.json';
export const OUTPUT_FILE = process.env["OUTPUT_FILE"] || 'src/i18n/strings/en_EN.json';

Expand Down

0 comments on commit 0233a2e

Please sign in to comment.