Skip to content

Commit

Permalink
Merge pull request #187 from postcss/update-deps
Browse files Browse the repository at this point in the history
Bump to 9.1.0
  • Loading branch information
w0rm committed Jan 12, 2024
2 parents c21fca9 + 687f29f commit 77ed79a
Show file tree
Hide file tree
Showing 6 changed files with 93 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: ['18', '20']
node-version: ['18', '20', '21']

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 2 additions & 0 deletions .npmignore
Expand Up @@ -23,3 +23,5 @@ pids
test
test.js
yarn.lock
flake.lock
flake.nix
9 changes: 8 additions & 1 deletion README.md
Expand Up @@ -204,11 +204,18 @@ module.exports = function (ctx) {
'postcss-modules': options.modules ? {} : false
}
}
})
};
```

## Changelog

* 9.1.0
* Bump postcss-load-config to ^5.0.0
* Ensure options are passed to plugins when using postcss.config.js #170
* Update deps
* Drop support for node <18
* Add flake.nix for local dev with `nix develop`

* 9.0.1
* Bump postcss-load-config to ^3.0.0

Expand Down
60 changes: 60 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions flake.nix
@@ -0,0 +1,17 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
};

outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShell = pkgs.mkShell {
buildInputs = [ pkgs.nodejs_21 ];
};
});
}
10 changes: 5 additions & 5 deletions package.json
Expand Up @@ -13,7 +13,7 @@
"all": true,
"check-coverage": true
},
"version": "9.0.1",
"version": "9.1.0",
"description": "PostCSS gulp plugin",
"main": "index.js",
"engines": {
Expand All @@ -40,16 +40,16 @@
},
"homepage": "https://github.com/postcss/gulp-postcss",
"dependencies": {
"fancy-log": "^1.3.3",
"plugin-error": "^1.0.1",
"fancy-log": "^2.0.0",
"plugin-error": "^2.0.1",
"postcss-load-config": "^5.0.0",
"vinyl-sourcemaps-apply": "^0.2.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"gulp-sourcemaps": "^2.6.5",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"postcss": "^8.0.0",
"proxyquire": "^2.1.0",
"sinon": "^6.3.5",
Expand Down

0 comments on commit 77ed79a

Please sign in to comment.