Skip to content

Commit 516adc7

Browse files
committed
Update dependencies, adjust code style
1 parent b46d18e commit 516adc7

File tree

15 files changed

+16
-16
lines changed

15 files changed

+16
-16
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
},
2121
"homepage": "https://www.faucet-pipeline.org",
2222
"dependencies": {
23-
"faucet-pipeline-core": "^1.0.0-rc.13"
23+
"faucet-pipeline-core": "^1.2.1"
2424
},
2525
"devDependencies": {
26-
"eslint-config-fnd": "^1.6.0",
26+
"eslint-config-fnd": "^1.8.0",
2727
"imagemin-mozjpeg": "^8.0.0",
2828
"imagemin-pngquant": "^8.0.0",
2929
"imagemin-svgo": "^7.0.0",

test/test_basic/faucet.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module.exports = {
77
target: "./dist"
88
}],
99
plugins: {
10-
"static": {
10+
static: {
1111
plugin: path.resolve("../.."),
1212
bucket: "static"
1313
}

test/test_compact_custom/faucet.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module.exports = {
1010
}
1111
}],
1212
plugins: {
13-
"static": {
13+
static: {
1414
plugin: path.resolve("../.."),
1515
bucket: "static"
1616
}

test/test_compact_images/faucet.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module.exports = {
88
compact: "images"
99
}],
1010
plugins: {
11-
"static": {
11+
static: {
1212
plugin: path.resolve("../.."),
1313
bucket: "static"
1414
}

test/test_compact_undefined/faucet.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module.exports = {
77
target: "./dist"
88
}],
99
plugins: {
10-
"static": {
10+
static: {
1111
plugin: path.resolve("../.."),
1212
bucket: "static"
1313
}

test/test_fingerprint/faucet.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module.exports = {
1010
target: "./dist/manifest.json"
1111
},
1212
plugins: {
13-
"static": {
13+
static: {
1414
plugin: path.resolve("../.."),
1515
bucket: "static"
1616
}

test/test_key_config/faucet.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module.exports = {
1111
key: (f, targetDir) => path.relative(targetDir, f)
1212
},
1313
plugins: {
14-
"static": {
14+
static: {
1515
plugin: path.resolve("../.."),
1616
bucket: "static"
1717
}

test/test_key_for_single_file/faucet.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module.exports = {
1111
key: (f, targetDir) => path.relative(targetDir, f)
1212
},
1313
plugins: {
14-
"static": {
14+
static: {
1515
plugin: path.resolve("../.."),
1616
bucket: "static"
1717
}

test/test_manifest_base_uri/faucet.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module.exports = {
1111
value: f => `/assets/${path.relative("./dist", f)}`
1212
},
1313
plugins: {
14-
"static": {
14+
static: {
1515
plugin: path.resolve("../.."),
1616
bucket: "static"
1717
}

test/test_match_dirname/faucet.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module.exports = {
88
filter: path => path.startsWith("inner/")
99
}],
1010
plugins: {
11-
"static": {
11+
static: {
1212
plugin: path.resolve("../.."),
1313
bucket: "static"
1414
}

0 commit comments

Comments
 (0)