faucet-pipeline-css 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
name: tests
|
|
2
1
|
on:
|
|
3
2
|
- push
|
|
3
|
+
|
|
4
4
|
jobs:
|
|
5
|
-
|
|
5
|
+
test:
|
|
6
6
|
runs-on: ubuntu-latest
|
|
7
7
|
strategy:
|
|
8
8
|
matrix:
|
|
9
9
|
node-version:
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
10
|
+
- 20.x
|
|
11
|
+
- 24.x
|
|
12
|
+
- latest
|
|
13
13
|
steps:
|
|
14
|
-
- uses: actions/checkout@
|
|
15
|
-
- uses: actions/setup-node@
|
|
14
|
+
- uses: actions/checkout@v5
|
|
15
|
+
- uses: actions/setup-node@v6
|
|
16
16
|
with:
|
|
17
17
|
node-version: ${{ matrix.node-version }}
|
|
18
18
|
- run: npm install-test
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,19 @@
|
|
|
1
1
|
faucet-pipeline-css version history
|
|
2
2
|
===================================
|
|
3
3
|
|
|
4
|
+
v0.4.0
|
|
5
|
+
------
|
|
6
|
+
|
|
7
|
+
_2025-10-26_
|
|
8
|
+
|
|
9
|
+
notable changes for end users:
|
|
10
|
+
|
|
11
|
+
* dropped support for Node 19 and below
|
|
12
|
+
* update dependencies
|
|
13
|
+
|
|
14
|
+
no significant changes for developers
|
|
15
|
+
|
|
16
|
+
|
|
4
17
|
v0.3.0
|
|
5
18
|
------
|
|
6
19
|
|
package/lib/make-postcss.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
let postcss = require("postcss");
|
|
2
2
|
let atImport = require("postcss-import");
|
|
3
3
|
let assetURL = require("./asset-url");
|
|
4
|
-
let {
|
|
5
|
-
let readFile = promisify(require("fs").readFile);
|
|
4
|
+
let { readFile } = require("node:fs/promises");
|
|
6
5
|
|
|
7
6
|
module.exports = function(input, target, assetManager, sourcemaps, browsers, compact) {
|
|
8
7
|
let plugins = [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "faucet-pipeline-css",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "CSS for faucet-pipeline",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -19,15 +19,15 @@
|
|
|
19
19
|
},
|
|
20
20
|
"homepage": "https://www.faucet-pipeline.org",
|
|
21
21
|
"engines": {
|
|
22
|
-
"node": ">=
|
|
22
|
+
"node": ">= 20"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"faucet-pipeline-core": "^2.
|
|
26
|
-
"postcss": "~8.
|
|
27
|
-
"postcss-discard-comments": "~
|
|
28
|
-
"postcss-import": "~
|
|
25
|
+
"faucet-pipeline-core": "^2.1.0",
|
|
26
|
+
"postcss": "~8.5.6",
|
|
27
|
+
"postcss-discard-comments": "~7.0.4",
|
|
28
|
+
"postcss-import": "~16.1.1",
|
|
29
29
|
"postcss-message-helpers": "~2.0.0",
|
|
30
|
-
"postcss-normalize-whitespace": "~
|
|
30
|
+
"postcss-normalize-whitespace": "~7.0.1"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"eslint-config-fnd": "^1.13.0",
|