File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 3
3
All notable changes to this project will be documented in this file.
4
4
This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
5
5
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
7
13
8
14
### Fixes
9
15
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " postcss-modules-extract-imports" ,
3
- "version" : " 3.0.0-rc.3 " ,
3
+ "version" : " 3.0.0" ,
4
4
"description" : " A CSS Modules transform to extract local aliases for inline imports" ,
5
5
"main" : " src/index.js" ,
6
6
"engines" : {
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ module.exports = (options = {}) => {
68
68
const imports = { } ;
69
69
70
70
return {
71
- OnceExit ( root , postcss ) {
71
+ Once ( root , postcss ) {
72
72
// Check the existing imports order and save refs
73
73
root . walkRules ( ( rule ) => {
74
74
const matches = icssImport . exec ( rule . selector ) ;
You can’t perform that action at this time.
0 commit comments