Skip to content

Commit fea8c49

Browse files
committed
Reference correct file in package.json
1 parent 4c4a2ea commit fea8c49

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ jobs:
2222
api_key:
2323
secure: EcmiIhEPyxsf5NYSod6lRi3AGYaQgV5sFaer7FOYjYnrtMV9s/igpWxSrztzm5YBUgtAPltj0wkIpPv4CXikFm3LwNoP2MBqTy2pSB+E99YAJc6kOJpGhF6Luav5cICIWi6EUvUHqOKrvWxiX5l0tqPuDaCNvNVVi1vF0t8oo9nfME4+wnkieKqA3bvc3ye4hzy/nr0vunanRYir35nQRdOUem2lnMlcl4d6DxCyOMapOfki1Gq04+mNQ+X30oT03u/CRoFu+8osm6J4YKPnsWXudy1j9Vk/TZ81iEzbS5tgbdzlLL18pMIl048pd9BrHXM47lhlbchqPF12ERGwnGxf7XmkPJ2uwi7d6VAhtLKwZJ40+hYoAIadL7UayGK92H+x3l9Q/6bg5J87ZYs0+ZyYJ0I/rfCX5zH6Nu2FRacHHBGCg4pHUWa6rLzbsESNYTi5EQPauGMmJEZ7/jlhN+gH8foc5yYGWua9ZD3ALlB9jY+KKnogxzLQSfBwTOaETOIuNnQoxhIb9u6rOdaX3ZLszdesB2TGbECowK3X9r+4nreyVt5Cg7WEodEvQy7JftS6I9dmrU68BZ+bLcTJ/DIDCm8whsZ6xbPXh2GPpzFjpYTKdsJ/5Rs0z1+3d3jjOfHLBSsdpKveECPatFjLYwBf65x09KNG9EfQD7Vhbqw=
2424
skip_cleanup: true
25-
on:
26-
tags: true
2725
- stage: Publishing to GitHub
2826
if: branch = master
2927
script: echo "Publishing to Github..."
@@ -34,7 +32,6 @@ jobs:
3432
skip_cleanup: true
3533
on:
3634
repo: jshjohnson/Animate
37-
tags: true
3835
- stage: Deploying
3936
if: branch = master
4037
script: npm run deploy

package.json

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
"name": "animate.js",
33
"version": "2.0.0",
44
"description": "Tiny vanilla JS plugin to trigger animations on elements when they are within the viewport",
5-
"main": "index.js",
5+
"main": "./dist/js/animate.min.js",
6+
"files": [
7+
"src",
8+
"dist"
9+
],
610
"repository": {
711
"type": "git",
812
"url": "git+https://github.com/jshjohnson/Animate.git"
@@ -26,12 +30,10 @@
2630
"build:css": "node-sass src/scss/app.scss dist/css/app.css",
2731
"deploy": "git subtree push --prefix dist origin gh-pages"
2832
},
29-
"bundlesize": [
30-
{
31-
"path": "dist/js/animate.min.js",
32-
"maxSize": "10 kB"
33-
}
34-
],
33+
"bundlesize": [{
34+
"path": "dist/js/animate.min.js",
35+
"maxSize": "10 kB"
36+
}],
3537
"dependencies": {
3638
"lodash-es": "^4.17.14"
3739
},
@@ -69,4 +71,4 @@
6971
"tslib": "^1.10.0",
7072
"typescript": "^3.5.3"
7173
}
72-
}
74+
}

0 commit comments

Comments
 (0)