From b75f011cf9ea2546e29eddb24e64ac807057817e Mon Sep 17 00:00:00 2001 From: Douglas Duteil Date: Sun, 23 Aug 2015 16:20:52 +0200 Subject: [PATCH] Update README.md Following https://github.com/css-modules/postcss-modules-extract-imports/commit/a2b0e9d81a389a7a1970ba2564df5d7d0026bf13 Switch to "composes" instead of "extends" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6f83c64..6275006 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Write some CSS Modules: ```css /* component.css */ .myComponent { - extends: redBackground from "./backgrounds.css"; + composes: redBackground from "./backgrounds.css"; color: white; } ```