Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(build): fix the travis-ci build to deploy with assets #39

Merged
merged 2 commits into from
Jul 5, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 0 additions & 21 deletions .npmignore

This file was deleted.

8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ node_js:
- "6"

# Run the the validate script
script: yarn run validate

# We of course run a build first to generate the build targets
before_deploy: yarn run build
script:
- yarn run validate
- yarn run build

# Using semantic-release, deploy a new version of the library
# We're running multiple node jobs so running on latest Node
# version
deploy:
skip_cleanup: true
provider: script
script: npx semantic-release
on:
Expand Down
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
"jsnext:main": "lib/esm/index.js",
"browser": "dist/eventbrite.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"dist"
],
"keywords": [
"rest",
"api",
Expand Down