From 52f5ee68ed5f7d3a20006fe95ed394375b7183e8 Mon Sep 17 00:00:00 2001 From: evilebottnawi Date: Tue, 13 Oct 2020 14:47:05 +0300 Subject: [PATCH] chore(release): 3.0.0 --- CHANGELOG.md | 8 +++++++- package.json | 2 +- src/index.js | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb48e2f..e5d1ba4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,13 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## [3.0.0-rc.3](https://github.com/postcss-modules-local-by-default/compare/v3.0.0-rc.2...v3.0.0-rc.3) - 2020-11-08 +## [3.0.0](https://github.com/postcss-modules-local-by-default/compare/v3.0.0-rc.3...v3.0.0) - 2020-10-13 + +### Fixes + +- compatibility with plugins other plugins + +## [3.0.0-rc.3](https://github.com/postcss-modules-local-by-default/compare/v3.0.0-rc.2...v3.0.0-rc.3) - 2020-10-11 ### Fixes diff --git a/package.json b/package.json index f3878b2..8999a35 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "postcss-modules-extract-imports", - "version": "3.0.0-rc.3", + "version": "3.0.0", "description": "A CSS Modules transform to extract local aliases for inline imports", "main": "src/index.js", "engines": { diff --git a/src/index.js b/src/index.js index b0b2f3d..98b9e3f 100644 --- a/src/index.js +++ b/src/index.js @@ -68,7 +68,7 @@ module.exports = (options = {}) => { const imports = {}; return { - OnceExit(root, postcss) { + Once(root, postcss) { // Check the existing imports order and save refs root.walkRules((rule) => { const matches = icssImport.exec(rule.selector);