Skip to content

Commit 368c149

Browse files
committed
Declared variable shouldn't be imported
1 parent fcc43da commit 368c149

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

src/master/implementation.node.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ import {
1010
ThreadsWorkerOptions,
1111
WorkerImplementation
1212
} from "../types/master"
13-
import { isWebpack, requireFunction, __non_webpack_require__ } from '../webpack-hack'
13+
import { isWebpack, requireFunction } from "../webpack-hack"
14+
export declare const __non_webpack_require__: typeof require
1415

1516
interface WorkerGlobalScope {
1617
addEventListener(eventName: string, listener: (event: Event) => void): void

src/webpack-hack.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
// TODO remove webpack hacks. These hurt the performance for non-web-pack situations
44
// Webpack hack
5-
export declare let __non_webpack_require__: typeof require
5+
declare const __non_webpack_require__: typeof require
66
export const isWebpack = typeof __non_webpack_require__ === "function"
77
export const requireFunction: typeof require = isWebpack ? __non_webpack_require__ : eval("require")

src/worker_threads.ts

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// TODO this file isn't used!
2-
31
// Webpack hack
42
import { requireFunction } from './webpack-hack'
53

0 commit comments

Comments
 (0)