From 6c48a741768772e69812d3c8253997f011fca9f4 Mon Sep 17 00:00:00 2001 From: Vojta Tranta Date: Sat, 9 Jan 2016 22:35:14 +0100 Subject: [PATCH] require calling hook directly --- src/index.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/index.js b/src/index.js index 3938bca..6cce887 100644 --- a/src/index.js +++ b/src/index.js @@ -1,6 +1,5 @@ import assign from 'lodash.assign'; import debug from 'debug'; -import hook from './hook'; import identity from 'lodash.identity'; import extractor from './extractor'; import { readFileSync } from 'fs'; @@ -83,5 +82,3 @@ function fetch(to, from) { return tokens; } - -hook(filename => fetch(filename, filename), '.css');