Releases: postcss/postcss-import
Releases · postcss/postcss-import
7.0.0
6.1.1
- Fixed: Prevent mutability issue, round 2
(#44) - Added:
plugins
option, to run some postcss plugin on imported files
(#55) - Added:
bower_components
is now part of the default paths
(#66) - Added:
async
option allow to use enable PostCSS async API usage.
Note that it's not enabling async fs read yet. It has been added to fix breaking
change introduced by 6.1.0.
6.0.0
5.2.2
5.2.1
5.2.0
5.1.1
5.1.0
- Added: files with the same content will only be imported once. Previously, only the full path was used to determine if a file has already been imported in a given scope.
Now, we also test create a hash with the content of the file to check if a file with the same content has not already been imported.
This might be usefull if some modules you import are importing the same library from different places (eg: normalize might be as dep for several modules located in different places innode_modules
)
(#29)