Skip to content

Commit

Permalink
Reference correct file in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
jshjohnson committed Jul 14, 2019
1 parent 4c4a2ea commit fea8c49
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ jobs:
api_key:
secure: EcmiIhEPyxsf5NYSod6lRi3AGYaQgV5sFaer7FOYjYnrtMV9s/igpWxSrztzm5YBUgtAPltj0wkIpPv4CXikFm3LwNoP2MBqTy2pSB+E99YAJc6kOJpGhF6Luav5cICIWi6EUvUHqOKrvWxiX5l0tqPuDaCNvNVVi1vF0t8oo9nfME4+wnkieKqA3bvc3ye4hzy/nr0vunanRYir35nQRdOUem2lnMlcl4d6DxCyOMapOfki1Gq04+mNQ+X30oT03u/CRoFu+8osm6J4YKPnsWXudy1j9Vk/TZ81iEzbS5tgbdzlLL18pMIl048pd9BrHXM47lhlbchqPF12ERGwnGxf7XmkPJ2uwi7d6VAhtLKwZJ40+hYoAIadL7UayGK92H+x3l9Q/6bg5J87ZYs0+ZyYJ0I/rfCX5zH6Nu2FRacHHBGCg4pHUWa6rLzbsESNYTi5EQPauGMmJEZ7/jlhN+gH8foc5yYGWua9ZD3ALlB9jY+KKnogxzLQSfBwTOaETOIuNnQoxhIb9u6rOdaX3ZLszdesB2TGbECowK3X9r+4nreyVt5Cg7WEodEvQy7JftS6I9dmrU68BZ+bLcTJ/DIDCm8whsZ6xbPXh2GPpzFjpYTKdsJ/5Rs0z1+3d3jjOfHLBSsdpKveECPatFjLYwBf65x09KNG9EfQD7Vhbqw=
skip_cleanup: true
on:
tags: true
- stage: Publishing to GitHub
if: branch = master
script: echo "Publishing to Github..."
Expand All @@ -34,7 +32,6 @@ jobs:
skip_cleanup: true
on:
repo: jshjohnson/Animate
tags: true
- stage: Deploying
if: branch = master
script: npm run deploy
Expand Down
18 changes: 10 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
"name": "animate.js",
"version": "2.0.0",
"description": "Tiny vanilla JS plugin to trigger animations on elements when they are within the viewport",
"main": "index.js",
"main": "./dist/js/animate.min.js",
"files": [
"src",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jshjohnson/Animate.git"
Expand All @@ -26,12 +30,10 @@
"build:css": "node-sass src/scss/app.scss dist/css/app.css",
"deploy": "git subtree push --prefix dist origin gh-pages"
},
"bundlesize": [
{
"path": "dist/js/animate.min.js",
"maxSize": "10 kB"
}
],
"bundlesize": [{
"path": "dist/js/animate.min.js",
"maxSize": "10 kB"
}],
"dependencies": {
"lodash-es": "^4.17.14"
},
Expand Down Expand Up @@ -69,4 +71,4 @@
"tslib": "^1.10.0",
"typescript": "^3.5.3"
}
}
}

0 comments on commit fea8c49

Please sign in to comment.