Skip to content
This repository has been archived by the owner on Jun 16, 2018. It is now read-only.

Adding changes to push package to npm #264

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
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
75 changes: 75 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
bower.json
dist/*
encloseConfig.js
Gruntfile.js
karma.conf.js
localserver.js
npm-shrinkwrap.json
pgbuildconfig.example.json
spec/*
tools/*

# Created by https://www.gitignore.io/api/node

### Node ###
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env


# End of https://www.gitignore.io/api/node
21 changes: 15 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
language: node_js
node_js:
- 0.10
- "6.11.1"
before_install:
- "npm i -g bower karma-cli"
- npm i -g bower karma-cli
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
after_script:
- ls ./coverage
- 'npm install [email protected] && cat "./coverage/Firefox 31.0.0 (Linux)/lcov.info" | coveralls'
- ls ./coverage
- npm install [email protected] && cat "./coverage/Firefox 31.0.0 (Linux)/lcov.info"
| coveralls
deploy:
provider: npm
email: [email protected]
api_key:
secure: XiN+tPDSRs5Ekfc6MuRdIaLgKqDMato8a0Z2z5tF1V3haO7OLxE8WF4o7hRGnQ23xUHdHIUrPsAviBJ4ILyUj0wP9f6iYdF/FiI1qfWMRDG2OIr2qiB/wenCZp6qnnUkbmPBfWDKdXAIkkH4Psx7kbI7A+sarioI2mLTS0Mv8rE=
on:
tags: true
repo: FirstLegoLeague/fllscoring
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fllscoring",
"version": "0.3.0",
"name": "@first-lego-league/fllscoring",
"version": "1.0.0",
"description": "fll scoring application",
"main": "index.js",
"scripts": {
Expand Down