From 47c804285b2f8bcad799e4c9f501a2fe93521977 Mon Sep 17 00:00:00 2001 From: Basarat Ali Syed Date: Tue, 14 Feb 2017 10:00:18 +1100 Subject: [PATCH] revert changes to CSSBundle --- src/plugins/CSSBundle.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/plugins/CSSBundle.ts b/src/plugins/CSSBundle.ts index 18242f276..b9bcb764a 100644 --- a/src/plugins/CSSBundle.ts +++ b/src/plugins/CSSBundle.ts @@ -1,3 +1,4 @@ +import { File } from "../File"; import { WorkFlowContext } from "./../WorkflowContext"; import { Plugin } from "../WorkflowContext"; @@ -12,6 +13,11 @@ export class CSSBundleClass implements Plugin { public test: RegExp = /\.css$/; constructor(opts: any = {}) { } public init(context: WorkFlowContext) { } + + public transformGroup(group: File) { + let contents = []; + } + }; export const CSSBundle = (opts?: any) => {