From 5e848ca3e007b14f62b9c3e422a22c93417b2817 Mon Sep 17 00:00:00 2001 From: Mark David Avery Date: Wed, 5 Apr 2017 16:36:09 -0700 Subject: [PATCH] fix(style manifest): updated to new brocoli-style-mainifest properties that are more explicit --- index.js | 8 ++++---- package.json | 2 +- yarn.lock | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/index.js b/index.js index ef3b1b9..fa88249 100644 --- a/index.js +++ b/index.js @@ -5,7 +5,7 @@ var Funnel = require('broccoli-funnel'); var Merge = require('broccoli-merge-trees'); var ProcessStyles = require('./lib/pod-style.js'); var ExtractNames = require('./lib/pod-names.js'); -var IncludeAll = require('broccoli-style-manifest'); +var StyleManifest = require('broccoli-style-manifest'); module.exports = { @@ -135,9 +135,9 @@ module.exports = { }); } - var styleManifest = new IncludeAll(podStyles, { - outputFileName: 'pod-styles', - annotation: 'IncludeAll (ember-component-css combining all style files that there are extensions for)' + var styleManifest = new StyleManifest(podStyles, { + outputFileNameWithoutExtension: 'pod-styles', + annotation: 'StyleManifest (ember-component-css combining all style files that there are extensions for)' }); tree = new Merge([podStyles, styleManifest, tree].filter(Boolean), { diff --git a/package.json b/package.json index c307ffb..079694c 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,7 @@ "broccoli-merge-trees": "^2.0.0", "broccoli-persistent-filter": "1.2.13", "broccoli-plugin": "^1.2.1", - "broccoli-style-manifest": "^1.1.0", + "broccoli-style-manifest": "^1.2.2", "ember-cli-babel": "^5.1.7", "ember-getowner-polyfill": "^1.1.1", "fs-tree-diff": "^0.5.6", diff --git a/yarn.lock b/yarn.lock index f276fce..09bdf07 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1270,9 +1270,9 @@ broccoli-stew@^1.2.0, broccoli-stew@^1.3.3: rsvp "^3.0.16" walk-sync "^0.3.0" -broccoli-style-manifest@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/broccoli-style-manifest/-/broccoli-style-manifest-1.1.0.tgz#aae89d7773f271ee7740f869c9a074cccf3f57a8" +broccoli-style-manifest@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/broccoli-style-manifest/-/broccoli-style-manifest-1.2.2.tgz#4a91bde0a44d82beb51a55c838270c8dbc2a59d9" dependencies: broccoli-plugin "^1.3.0" fs-tree-diff "^0.5.6"