Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml → .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
strategy:
matrix:
node-version:
- 14.x
- 18.x
- 19.x
- 20.x
- 22.x
- latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install-test
Expand Down
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,31 @@
faucet-pipeline-css version history
===================================


v0.4.0
------

_TBD_
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will need to be updated, of course. We might also want to update the Git commit date accordingly.


maintenance release to update dependencies

* bumped Node requirement to v20 or later, dropping support for obsolete versions


v0.3.0
------

_2023-01-12_

Maintenance release to update dependencies; no significant changes
maintenance release to update dependencies; no significant changes


v0.2.1
------

_2022-02-18_

Maintenance release to update dependencies; no significant changes
maintenance release to update dependencies; no significant changes


v0.2.0
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "faucet-pipeline-css",
"version": "0.3.0",
"version": "0.4.0",
"description": "CSS for faucet-pipeline",
"main": "lib/index.js",
"scripts": {
Expand All @@ -19,20 +19,20 @@
},
"homepage": "https://www.faucet-pipeline.org",
"engines": {
"node": ">= 14"
"node": ">= 20"
},
"dependencies": {
"faucet-pipeline-core": "^2.0.0",
"postcss": "~8.4.12",
"postcss-discard-comments": "~5.1.0",
"postcss-import": "~15.1.0",
"faucet-pipeline-core": "^2.0.0 || ^3.0.0",
"postcss": "~8.5.3",
"postcss-discard-comments": "~7.0.3",
"postcss-import": "~16.1.0",
"postcss-message-helpers": "~2.0.0",
"postcss-normalize-whitespace": "~5.1.0"
"postcss-normalize-whitespace": "~7.0.0"
},
"devDependencies": {
"eslint-config-fnd": "^1.13.0",
"faucet-pipeline-static": "^2.1.0",
"json-diff": "^1.0.0",
"json-diff": "^1.0.6",
"npm-run-all": "^4.1.5",
"release-util-fnd": "^3.0.0"
}
Expand Down
2 changes: 1 addition & 1 deletion test/test_error/expected.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
body:before {
content: "\26a0 CSS Error: src/index.css:2:2: Unknown word";
content: "\26a0 CSS Error: src/index.css:2:2: Unknown word color";
font-weight: bold;
display: block;
border: 5px solid red;
Expand Down