Skip to content

Commit

Permalink
5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
romainmenke committed Oct 18, 2024
1 parent b54c90f commit 2d121a7
Show file tree
Hide file tree
Showing 7 changed files with 332 additions and 3,720 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ node_modules
.*
!.editorconfig
!.gitignore
!.rollup.mjs
!.rollup.js
!.tape.js
!.travis.yml
Expand Down
19 changes: 0 additions & 19 deletions .rollup.js

This file was deleted.

7 changes: 7 additions & 0 deletions .rollup.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export default {
input: 'src/index.js',
output: [
{ file: 'index.js', format: 'cjs', exports: 'auto' },
{ file: 'index.mjs', format: 'esm', exports: 'auto' }
],
};
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changes to PostCSS Advanced Variables

### 5.0.0

- Updated dependencies
- Changed: Support for Node 18+

### 4.0.0

- Updated: `postcss` to ^8.4 (major)
Expand Down
Loading

0 comments on commit 2d121a7

Please sign in to comment.