Skip to content

Commit 52f5ee6

Browse files
chore(release): 3.0.0
1 parent 89cdbb1 commit 52f5ee6

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/).
55

6-
## [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
6+
## [3.0.0](https://github.com/postcss-modules-local-by-default/compare/v3.0.0-rc.3...v3.0.0) - 2020-10-13
7+
8+
### Fixes
9+
10+
- compatibility with plugins other plugins
11+
12+
## [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
713

814
### Fixes
915

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postcss-modules-extract-imports",
3-
"version": "3.0.0-rc.3",
3+
"version": "3.0.0",
44
"description": "A CSS Modules transform to extract local aliases for inline imports",
55
"main": "src/index.js",
66
"engines": {

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ module.exports = (options = {}) => {
6868
const imports = {};
6969

7070
return {
71-
OnceExit(root, postcss) {
71+
Once(root, postcss) {
7272
// Check the existing imports order and save refs
7373
root.walkRules((rule) => {
7474
const matches = icssImport.exec(rule.selector);

0 commit comments

Comments
 (0)