Browse Source

Add simple Travis build to detect dependency conflicts (#6)

tags/v10.0.0-alpha14
Artur 6 years ago
parent
commit
e2dc6db70c
No account linked to committer's email address
3 changed files with 38 additions and 1 deletions
  1. 17
    0
      .travis.yml
  2. 1
    1
      bower.json
  3. 20
    0
      package.json

+ 17
- 0
.travis.yml View File

@@ -0,0 +1,17 @@
sudo: false
dist: trusty
language: node_js
node_js: 8.1

cache:
directories:
- node_modules

addons:
firefox: latest
chrome: latest

install:
- npm install
- bower install


+ 1
- 1
bower.json View File

@@ -8,7 +8,7 @@
"main": "",
"license": [
"Apache-2.0",
"http://vaadin.com/license/cval"
"https://vaadin.com/license/cval-3.0"
],
"ignore": [
"**/.*",

+ 20
- 0
package.json View File

@@ -0,0 +1,20 @@
{
"name": "vaadin",
"version": "10.0.0-alpha13",
"description": "Vaadin Elements is an evolving set of open source custom HTML elements, built using Polymer, for building mobile and desktop web applications in modern browsers.",
"author": "Vaadin Ltd",
"license": "(Apache-2.0 OR SEE LICENSE IN https://vaadin.com/license/cval-3.0)",
"dependencies": {
"bower": "latest"
},
"devDependencies": {},
"keywords": [
"vaadin",
"core",
"elements",
"web",
"components",
"webcomponents",
"web-components"
]
}

Loading…
Cancel
Save