Skip to content

Commit 09f4b8c

Browse files
committed
extracted utility function to generate fingerprint into separate package
doesn't belong here, as it unnecessarily complicates imports - moved into faucet-pipeline-util This reverts commit 22066d9.
1 parent 3406e07 commit 09f4b8c

File tree

4 files changed

+4
-25
lines changed

4 files changed

+4
-25
lines changed
File renamed without changes.

lib/util.js

Lines changed: 0 additions & 17 deletions
This file was deleted.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "faucet-pipeline",
3-
"version": "0.9.1",
3+
"version": "0.10.0",
44
"description": "front-end asset pipeline",
55
"author": "FND",
66
"contributors": [
@@ -23,14 +23,14 @@
2323
"faucet": "bin/faucet"
2424
},
2525
"scripts": {
26-
"test": "eslint --cache *.js lib bin/* && echo ✓"
26+
"test": "eslint --cache *.js bin/* && echo ✓"
2727
},
2828
"dependencies": {
2929
"minimist": "^1.2.0",
3030
"nite-owl": "^2.0.0"
3131
},
3232
"devDependencies": {
33-
"eslint": "^4.0.0",
33+
"eslint": "^4.2.0",
3434
"eslint-config-fnd": "^1.1.1"
3535
}
3636
}

release

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,14 @@ mkdir tmp_release
1616
git ls-tree --name-only HEAD | while read filename; do
1717
cp -r "$filename" tmp_release
1818
done
19-
cd tmp_release
20-
mv lib/* ./
21-
rm -r lib
2219

2320
echo "about to publish v${version}"
2421
read -n1 -p "enter 'y' to continue" confirmation
2522
if [ "$confirmation" = "y" ]; then
23+
cd tmp_release
2624
npm publish
2725
cd ..
2826
git tag "v${version}"
2927
git push --tags origin master
30-
else
31-
cd ..
3228
fi
3329
rm -r tmp_release

0 commit comments

Comments
 (0)