Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 687f29f

Browse files
committed
Bump to 9.1.0
1 parent c21fca9 commit 687f29f

File tree

6 files changed

+93
-7
lines changed

6 files changed

+93
-7
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: ['18', '20']
15+
node-version: ['18', '20', '21']
1616

1717
steps:
1818
- uses: actions/checkout@v2

.npmignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,5 @@ pids
2323
test
2424
test.js
2525
yarn.lock
26+
flake.lock
27+
flake.nix

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,11 +204,18 @@ module.exports = function (ctx) {
204204
'postcss-modules': options.modules ? {} : false
205205
}
206206
}
207-
})
207+
};
208208
```
209209

210210
## Changelog
211211

212+
* 9.1.0
213+
* Bump postcss-load-config to ^5.0.0
214+
* Ensure options are passed to plugins when using postcss.config.js #170
215+
* Update deps
216+
* Drop support for node <18
217+
* Add flake.nix for local dev with `nix develop`
218+
212219
* 9.0.1
213220
* Bump postcss-load-config to ^3.0.0
214221

flake.lock

Lines changed: 60 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
inputs = {
3+
nixpkgs.url = "github:nixos/nixpkgs";
4+
flake-utils.url = "github:numtide/flake-utils";
5+
};
6+
7+
outputs = { self, nixpkgs, flake-utils }:
8+
flake-utils.lib.eachDefaultSystem (system:
9+
let
10+
pkgs = nixpkgs.legacyPackages.${system};
11+
in
12+
{
13+
devShell = pkgs.mkShell {
14+
buildInputs = [ pkgs.nodejs_21 ];
15+
};
16+
});
17+
}

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"all": true,
1414
"check-coverage": true
1515
},
16-
"version": "9.0.1",
16+
"version": "9.1.0",
1717
"description": "PostCSS gulp plugin",
1818
"main": "index.js",
1919
"engines": {
@@ -40,16 +40,16 @@
4040
},
4141
"homepage": "https://github.com/postcss/gulp-postcss",
4242
"dependencies": {
43-
"fancy-log": "^1.3.3",
44-
"plugin-error": "^1.0.1",
43+
"fancy-log": "^2.0.0",
44+
"plugin-error": "^2.0.1",
4545
"postcss-load-config": "^5.0.0",
4646
"vinyl-sourcemaps-apply": "^0.2.1"
4747
},
4848
"devDependencies": {
4949
"eslint": "^5.16.0",
5050
"gulp-sourcemaps": "^2.6.5",
51-
"mocha": "^5.2.0",
52-
"nyc": "^12.0.2",
51+
"mocha": "^10.2.0",
52+
"nyc": "^15.1.0",
5353
"postcss": "^8.0.0",
5454
"proxyquire": "^2.1.0",
5555
"sinon": "^6.3.5",

0 commit comments

Comments
 (0)