faucet-pipeline-css 0.2.0 → 0.2.1
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/.github/workflows/{nodejs.yml → tests.yml} +3 -3
- package/CHANGELOG.md +10 -2
- package/README.md +1 -1
- package/package.json +7 -7
- package/release +3 -3
|
@@ -7,12 +7,12 @@ jobs:
|
|
|
7
7
|
strategy:
|
|
8
8
|
matrix:
|
|
9
9
|
node-version:
|
|
10
|
-
- 12.x
|
|
11
10
|
- 14.x
|
|
12
11
|
- 16.x
|
|
12
|
+
- 17.x
|
|
13
13
|
steps:
|
|
14
|
-
- uses: actions/checkout@v2.
|
|
15
|
-
- uses: actions/setup-node@v2.1
|
|
14
|
+
- uses: actions/checkout@v2.4.0
|
|
15
|
+
- uses: actions/setup-node@v2.5.1
|
|
16
16
|
with:
|
|
17
17
|
node-version: ${{ matrix.node-version }}
|
|
18
18
|
- run: npm install-test
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
|
-
faucet-pipeline-
|
|
2
|
-
|
|
1
|
+
faucet-pipeline-css version history
|
|
2
|
+
===================================
|
|
3
|
+
|
|
4
|
+
v0.2.1
|
|
5
|
+
------
|
|
6
|
+
|
|
7
|
+
_2022-02-18_
|
|
8
|
+
|
|
9
|
+
Maintenance release to update dependencies; no significant changes
|
|
10
|
+
|
|
3
11
|
|
|
4
12
|
v0.2.0
|
|
5
13
|
------
|
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# faucet-pipeline-css
|
|
2
2
|
[](https://www.npmjs.com/package/faucet-pipeline-css)
|
|
3
3
|
|
|
4
|
-
You can find the documentation [here](http://www.faucet-pipeline.org).
|
|
4
|
+
You can find the documentation [here](http://www.faucet-pipeline.org/css).
|
|
5
5
|
|
|
6
6
|
## License
|
|
7
7
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "faucet-pipeline-css",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "CSS for faucet-pipeline",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"homepage": "https://www.faucet-pipeline.org",
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"faucet-pipeline-core": "^1.6.1",
|
|
23
|
-
"postcss": "~8.
|
|
24
|
-
"postcss-discard-comments": "~5.0.
|
|
23
|
+
"postcss": "~8.4.6",
|
|
24
|
+
"postcss-discard-comments": "~5.0.3",
|
|
25
25
|
"postcss-import": "~14.0.2",
|
|
26
26
|
"postcss-message-helpers": "~2.0.0",
|
|
27
|
-
"postcss-normalize-whitespace": "~5.0.
|
|
27
|
+
"postcss-normalize-whitespace": "~5.0.4"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"eslint-config-fnd": "^1.6.0",
|
|
31
|
-
"eslint-plugin-import": "^2.
|
|
32
|
-
"faucet-pipeline-static": "^
|
|
33
|
-
"json-diff": "^0.
|
|
31
|
+
"eslint-plugin-import": "^2.25.3",
|
|
32
|
+
"faucet-pipeline-static": "^2.0.0",
|
|
33
|
+
"json-diff": "^0.7.1",
|
|
34
34
|
"npm-run-all": "^4.1.5",
|
|
35
35
|
"release-util-fnd": "^2.0.1"
|
|
36
36
|
}
|