From fe95260d702b78ce962a159fea70bfacecb303f8 Mon Sep 17 00:00:00 2001 From: YukJiSoo Date: Fri, 20 Dec 2019 07:02:56 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20worker=EC=97=90=EC=84=9C=20=EC=A0=84?= =?UTF-8?q?=EC=97=AD=EB=B3=80=EC=88=98=20=EC=A0=9C=ED=95=9C=20=EC=84=A4?= =?UTF-8?q?=EC=A0=95=20=EA=B4=80=EB=A0=A8=20=EC=A3=BC=EC=84=9D=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 제대로 빌드가 안되는 현상을 해결하기 위해 eslint의 전역변수 제한 설정 관련 주석을 추가해주었습니다. --- coconut/src/bundler/pathParser.js | 1 + coconut/src/bundler/require.js | 1 + coconut/src/worker/build.worker.js | 1 + 3 files changed, 3 insertions(+) diff --git a/coconut/src/bundler/pathParser.js b/coconut/src/bundler/pathParser.js index 8a5cedd1..7c8fb36f 100644 --- a/coconut/src/bundler/pathParser.js +++ b/coconut/src/bundler/pathParser.js @@ -1,3 +1,4 @@ +/* eslint no-restricted-globals: 0 */ import { pathStack } from './global'; import path from 'path'; diff --git a/coconut/src/bundler/require.js b/coconut/src/bundler/require.js index b9495099..b5bd62c3 100644 --- a/coconut/src/bundler/require.js +++ b/coconut/src/bundler/require.js @@ -1,3 +1,4 @@ +/* eslint no-restricted-globals: 0 */ import { pathStack } from './global'; import { pathParser } from './pathParser'; import { transformCode } from './core'; diff --git a/coconut/src/worker/build.worker.js b/coconut/src/worker/build.worker.js index c5fdc898..a29962cf 100644 --- a/coconut/src/worker/build.worker.js +++ b/coconut/src/worker/build.worker.js @@ -1,3 +1,4 @@ +/* eslint no-restricted-globals: 0 */ import * as bundler from 'bundler'; self.process = {};