From 8e62a48c0c0960c25a8716ab23f622df748ce6ec Mon Sep 17 00:00:00 2001 From: Lukas Hechenberger Date: Wed, 4 Dec 2019 18:23:52 +0100 Subject: [PATCH] fix(typescript): import from scoped utils (#78) --- packages/typescript/src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/typescript/src/index.js b/packages/typescript/src/index.js index 26ea13816..420441f33 100644 --- a/packages/typescript/src/index.js +++ b/packages/typescript/src/index.js @@ -1,7 +1,7 @@ import * as fs from 'fs'; import * as ts from 'typescript'; -import { createFilter } from 'rollup-pluginutils'; +import { createFilter } from '@rollup/pluginutils'; import resolveId from 'resolve'; import endsWith from './string';