faucet-pipeline-css 0.5.0 → 1.0.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.
- package/CHANGELOG.md +11 -0
- package/README.md +3 -1
- package/package.json +7 -7
- package/test/run +1 -1
- package/test/test_fingerprinting/expected.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
faucet-pipeline-css version history
|
|
2
2
|
===================================
|
|
3
3
|
|
|
4
|
+
v1.0.0
|
|
5
|
+
------
|
|
6
|
+
|
|
7
|
+
_2026-09-16_
|
|
8
|
+
|
|
9
|
+
notable changes for end users:
|
|
10
|
+
|
|
11
|
+
* ensured compatibility with faucet-pipeline-core v4
|
|
12
|
+
* updated dependencies
|
|
13
|
+
|
|
14
|
+
|
|
4
15
|
v0.5.0
|
|
5
16
|
------
|
|
6
17
|
|
package/README.md
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
# faucet-pipeline-css
|
|
2
2
|
[](https://www.npmjs.com/package/faucet-pipeline-css)
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
See [faucet-pipeline.org/css](https://www.faucet-pipeline.org/css) for documentation.
|
|
5
|
+
|
|
6
|
+
You can find the [source code on Codeberg](https://codeberg.org/faucet-pipeline/faucet-pipeline-css).
|
|
5
7
|
|
|
6
8
|
## License
|
|
7
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "faucet-pipeline-css",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "CSS for faucet-pipeline",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -11,24 +11,24 @@
|
|
|
11
11
|
},
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
14
|
-
"url": "
|
|
14
|
+
"url": "https://codeberg.org/faucet-pipeline/faucet-pipeline-css.git"
|
|
15
15
|
},
|
|
16
|
-
"author": "Lucas Dohmen <lucas@dohmen.io> (https://lucas.dohmen.io
|
|
16
|
+
"author": "Lucas Dohmen <lucas@dohmen.io> (https://lucas.dohmen.io)",
|
|
17
17
|
"license": "Apache-2.0",
|
|
18
18
|
"bugs": {
|
|
19
19
|
"url": "https://codeberg.org/faucet-pipeline/faucet-pipeline-css/issues"
|
|
20
20
|
},
|
|
21
|
-
"homepage": "https://www.faucet-pipeline.org",
|
|
21
|
+
"homepage": "https://www.faucet-pipeline.org/css",
|
|
22
22
|
"engines": {
|
|
23
23
|
"node": ">= 22"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"esbuild": "^0.28.
|
|
27
|
-
"faucet-pipeline-core": "^2.1.0"
|
|
26
|
+
"esbuild": "^0.28.2",
|
|
27
|
+
"faucet-pipeline-core": "^2.1.0 || ^4.0.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"eslint-config-fnd": "^1.13.0",
|
|
31
|
-
"faucet-pipeline-assets": "^0.
|
|
31
|
+
"faucet-pipeline-assets": "^1.0.0",
|
|
32
32
|
"json-diff": "^1.0.0",
|
|
33
33
|
"npm-run-all": "^4.1.5",
|
|
34
34
|
"release-util-fnd": "^3.0.0"
|
package/test/run
CHANGED
|
@@ -29,7 +29,7 @@ end
|
|
|
29
29
|
|
|
30
30
|
begin "$root/test_fingerprinting"
|
|
31
31
|
faucet --fingerprint
|
|
32
|
-
assert_identical "./dist/fingerprint/bundle-
|
|
32
|
+
assert_identical "./dist/fingerprint/bundle-dabc1c684fd0fcf8aa3655ba0a1af7e268153ce4e73cb524b4507dce403d5557.css" "./expected.css"
|
|
33
33
|
assert_identical "./dist/no-fingerprint/bundle.css" "./expected.css"
|
|
34
34
|
assert_json "./dist/manifest.json" "./expected.json"
|
|
35
35
|
end
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"dist/fingerprint/bundle.css":"/assets/dist/fingerprint/bundle-
|
|
1
|
+
{"dist/fingerprint/bundle.css":"/assets/dist/fingerprint/bundle-dabc1c684fd0fcf8aa3655ba0a1af7e268153ce4e73cb524b4507dce403d5557.css","dist/no-fingerprint/bundle.css":"/assets/dist/no-fingerprint/bundle.css"}
|