Add cache-busting mechanism
This commit is contained in:
parent
fd39937c84
commit
024d76ac9f
2 changed files with 10 additions and 3 deletions
10
.travis.yml
10
.travis.yml
|
@ -7,7 +7,15 @@ install: npm i
|
||||||
script:
|
script:
|
||||||
- npm test
|
- npm test
|
||||||
- npm run build
|
- npm run build
|
||||||
- npm run clean
|
|
||||||
|
# Remove unwanted files
|
||||||
|
- find . -maxdepth 1 -type f -not -name 'LICENSE' -not -name 'index.html' -not -name 'README.md' -delete &&
|
||||||
|
rm -fr node_modules src dist/vanity.js
|
||||||
|
|
||||||
|
#Cache busting
|
||||||
|
- COMMIT=$(git log --format='%h' -n 1) &&
|
||||||
|
sed -i "s/index.js/index.$COMMIT.js/g" index.html &&
|
||||||
|
mv dist/index.js dist/index.$COMMIT.js
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
provider: pages
|
provider: pages
|
||||||
|
|
|
@ -38,8 +38,7 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "node ./node_modules/xo/cli.js",
|
"test": "node ./node_modules/xo/cli.js",
|
||||||
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
|
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
|
||||||
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
|
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules"
|
||||||
"clean": "find . -maxdepth 1 -type f -not -name 'LICENSE' -not -name 'index.html' -not -name 'README.md' -delete && rm -fr node_modules src dist/vanity.js"
|
|
||||||
},
|
},
|
||||||
"xo": {
|
"xo": {
|
||||||
"rules": {
|
"rules": {
|
||||||
|
|
Loading…
Add table
Reference in a new issue