1
- import { Analyzer , Block , BlockFactory , Options as CSSBlocksOptions , SerializedSourceAnalysis , resolveConfiguration , BlockCompiler } from "@css-blocks/core" ;
1
+ import { Analyzer , Block , BlockCompiler , BlockFactory , Options as CSSBlocksOptions , SerializedSourceAnalysis , resolveConfiguration } from "@css-blocks/core" ;
2
2
import { BroccoliTreeImporter , EmberAnalysis , TEMPLATE_TYPE , pathToIdent } from "@css-blocks/ember-support" ;
3
3
import { TemplateIntegrationOptions } from "@opticss/template-api" ;
4
+ import { unionInto } from "@opticss/util" ;
4
5
import mergeTrees = require( "broccoli-merge-trees" ) ;
5
6
import type { InputNode } from "broccoli-node-api" ;
6
7
import Filter = require( "broccoli-persistent-filter" ) ;
@@ -9,7 +10,6 @@ import debugGenerator from "debug";
9
10
import * as FSTree from "fs-tree-diff" ;
10
11
import { Optimizer , postcss } from "opticss" ;
11
12
import * as path from "path" ;
12
- import { unionInto } from "@opticss/util" ;
13
13
14
14
const debug = debugGenerator ( "css-blocks:ember-app" ) ;
15
15
@@ -58,7 +58,6 @@ export class CSSBlocksApplicationPlugin extends Filter {
58
58
config = resolveConfiguration ( { importer} , config ) ;
59
59
let factory = new BlockFactory ( config , postcss ) ;
60
60
let analyzer = new EmberAnalyzer ( factory ) ;
61
- let blocks = new Array < Block > ( ) ;
62
61
// TODO: Make this configurable from the ember app.
63
62
let optimizerOptions = {
64
63
enabled : true ,
0 commit comments