Skip to content

Commit 486b9d0

Browse files
committed
fixed conditional
this was broken in 84baec4
1 parent 8fca545 commit 486b9d0

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.eslintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
root: true
12
extends: fnd

bin/faucet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ let options = ["watch", "fingerprint", "compact"].reduce((memo, option) => {
4646
if(options.watch) {
4747
console.error(`monitoring file system at ${rootDir}`);
4848

49-
if(options.fingerprint) { // for convenience
49+
if(options.fingerprint !== false) { // for convenience
5050
console.error("you might consider using `--no-fingerprint` to avoid " +
5151
"littering your file system with obsolete bundles");
5252
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "faucet-pipeline",
3-
"version": "0.11.0",
3+
"version": "0.11.1",
44
"description": "front-end asset pipeline",
55
"author": "FND",
66
"contributors": [

0 commit comments

Comments
 (0)