Skip to content

Commit

Permalink
chore: disable eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
sohee-K committed Apr 5, 2024
1 parent f2be326 commit dc970b0
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions packages/ui/scripts/buildCssModules.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
import fs from 'node:fs';
import path from 'node:path';
import allVariables from '../cssVariables';

const tsconfigPath = path.resolve("../tsconfig.json");
const tsconfig = JSON.parse(fs.readFileSync(tsconfigPath, "utf8"));
const outputDir = tsconfig.compilerOptions.outDir;
/* eslint-disable no-undef -- require import 오류 */
const fs = require("node:fs");
const path = require("node:path");
const allVariables = require("../dist/cssVariables");
const outputDir = require("../tsconfig.json").compilerOptions.outDir;

Object.keys(allVariables).forEach((key) => {
const variableValues = Object.entries(allVariables).find(
Expand Down

0 comments on commit dc970b0

Please sign in to comment.