diff --git a/CHANGELOG.md b/CHANGELOG.md index 5113c41..dd81440 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ faucet-pipeline-css version history =================================== +v0.5.0 +------ + +_TBD_ + +maintenance release to update dependencies; no significant changes + + v0.4.0 ------ @@ -19,7 +27,7 @@ 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 @@ -27,7 +35,7 @@ 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 diff --git a/package.json b/package.json index e4c99ba..8b527d9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "faucet-pipeline-css", - "version": "0.4.0", + "version": "0.5.0", "description": "CSS for faucet-pipeline", "main": "lib/index.js", "scripts": { @@ -22,7 +22,7 @@ "node": ">= 20" }, "dependencies": { - "faucet-pipeline-core": "^2.1.0", + "faucet-pipeline-core": "^2.1.0 || ^3.0.0", "postcss": "~8.5.6", "postcss-discard-comments": "~7.0.4", "postcss-import": "~16.1.1", @@ -31,7 +31,7 @@ }, "devDependencies": { "eslint-config-fnd": "^1.13.0", - "faucet-pipeline-static": "^2.1.0", + "faucet-pipeline-assets": "^0.1.0", "json-diff": "^1.0.0", "npm-run-all": "^4.1.5", "release-util-fnd": "^3.0.0" diff --git a/test/run b/test/run index fe8650e..9551cab 100755 --- a/test/run +++ b/test/run @@ -34,7 +34,7 @@ begin "$root/test_sourcemap" assert_identical_sourcemap "./dist/bundle.css" "./expected.css" "./expected.css.map" end -begin "$root/test_static_integration" +begin "$root/test_assets_integration" faucet assert_identical "./dist/bundle.css" "./expected.css" end diff --git a/test/test_static_integration/expected.css b/test/test_assets_integration/expected.css similarity index 100% rename from test/test_static_integration/expected.css rename to test/test_assets_integration/expected.css diff --git a/test/test_static_integration/expected.json b/test/test_assets_integration/expected.json similarity index 100% rename from test/test_static_integration/expected.json rename to test/test_assets_integration/expected.json diff --git a/test/test_static_integration/faucet.config.js b/test/test_assets_integration/faucet.config.js similarity index 96% rename from test/test_static_integration/faucet.config.js rename to test/test_assets_integration/faucet.config.js index 437845f..47082e2 100644 --- a/test/test_static_integration/faucet.config.js +++ b/test/test_assets_integration/faucet.config.js @@ -6,7 +6,7 @@ module.exports = { source: "./src/index.css", target: "./dist/bundle.css" }], - static: [{ + assets: [{ source: "./src/spacer.gif", target: "./dist/spacer.gif" }], diff --git a/test/test_static_integration/src/index.css b/test/test_assets_integration/src/index.css similarity index 100% rename from test/test_static_integration/src/index.css rename to test/test_assets_integration/src/index.css diff --git a/test/test_static_integration/src/spacer.gif b/test/test_assets_integration/src/spacer.gif similarity index 100% rename from test/test_static_integration/src/spacer.gif rename to test/test_assets_integration/src/spacer.gif