Skip to content

Releases: postcss/postcss-import

7.0.0

25 Aug 04:23
Compare
Choose a tag to compare
  • Removed: compatibility with postcss v4.x
    (#75)
  • Added: compatibility with postcss v5.x
    (#76)
  • Added: lighter package by upgrading some dependencies
    (#73)

6.1.1

07 Jul 20:38
Compare
Choose a tag to compare
  • 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

17 Jun 08:38
Compare
Choose a tag to compare
  • Changed: warnings messages are now using postcss message api (4.1.x)
  • Added: warning when a import statement has not been closed correctly
    (#42)

5.2.2

19 Apr 18:45
Compare
Choose a tag to compare
  • Fixed: globbed imports work for module directories (#37)

5.2.1

17 Apr 08:44
Compare
Choose a tag to compare
  • Fixed: glob import now works with single quote @import (#36)

5.2.0

15 Apr 05:33
Compare
Choose a tag to compare
  • Added: glob pattern are now supported if glob option is set to true (#34)
  • Added: plugin can now be added to PostCSS without calling it as a function (#27)

5.1.1

10 Apr 08:33
Compare
Choose a tag to compare
  • Fixed: regression of 5.1.0: files which only contain same @import rules were skip (#31)

5.1.0

27 Mar 06:07
Compare
Choose a tag to compare
  • 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 in node_modules)
    (#29)

5.0.3

16 Feb 06:47
Compare
Choose a tag to compare
  • Fixed: regression of 5.0.2: AST parent references were not updated (#25)

5.0.2

14 Feb 07:02
Compare
Choose a tag to compare
  • Fixed: indentation and code style are now preserved (#20)