summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerhii Kulykov <iamkulykov@gmail.com>2019-12-17 11:36:41 +0200
committerZhe Sun <31067185+ZheSun88@users.noreply.github.com>2019-12-17 11:36:41 +0200
commita253f913f441d2d1c5533981cd153c31a61b1961 (patch)
tree87187b9e27b384720bc0760ec96a9f55227f9c68
parent07b9539d94103d3a30e8c7d5cfb494fdc07f9f3b (diff)
downloadvaadin-a253f913f441d2d1c5533981cd153c31a61b1961.tar.gz
vaadin-a253f913f441d2d1c5533981cd153c31a61b1961.zip
Remove bower from 15.x completely (#60)
* Remove bower from 15.x completely
-rw-r--r--.travis.yml2
-rw-r--r--bower.json33
-rw-r--r--package.json3
-rw-r--r--update-core-version.js8
-rw-r--r--vaadin.html9
5 files changed, 0 insertions, 55 deletions
diff --git a/.travis.yml b/.travis.yml
index ba66927..00c4bd7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -12,6 +12,4 @@ addons:
chrome: latest
install:
- - npm install -g bower
- npm install
- - bower install
diff --git a/bower.json b/bower.json
deleted file mode 100644
index 7a5edb8..0000000
--- a/bower.json
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- "name": "vaadin",
- "description": "Bundle containing all web components which are part of the Vaadin platform",
- "homepage": "https://github.com/vaadin/vaadin",
- "authors": [
- "Vaadin Ltd"
- ],
- "main": "vaadin.html",
- "license": [
- "Apache-2.0",
- "https://vaadin.com/license/cval-3.0"
- ],
- "ignore": [
- "**/.*",
- "node_modules",
- "bower_components",
- "test",
- "tests",
- "update-core-version.js"
- ],
- "dependencies": {
- "vaadin-core": "15.0.0-alpha9",
- "vaadin-board": "vaadin-board#2.1.1",
- "vaadin-charts": "vaadin-charts#6.2.4",
- "vaadin-confirm-dialog": "vaadin-confirm-dialog#1.1.5",
- "vaadin-cookie-consent": "vaadin-cookie-consent#1.1.2",
- "vaadin-crud": "vaadin-crud#1.1.0",
- "vaadin-grid-pro": "vaadin-grid-pro#2.0.5",
- "vaadin-rich-text-editor": "vaadin-rich-text-editor#1.1.1",
- "vaadin-license-checker": "vaadin-license-checker#2.1.2",
- "cookieconsent": "cookieconsent#3.1.0"
- }
-} \ No newline at end of file
diff --git a/package.json b/package.json
index f1ec6f6..da60876 100644
--- a/package.json
+++ b/package.json
@@ -18,9 +18,6 @@
"files": [
"vaadin.js"
],
- "scripts": {
- "version": "node update-core-version.js && git add bower.json"
- },
"keywords": [
"vaadin",
"core",
diff --git a/update-core-version.js b/update-core-version.js
deleted file mode 100644
index a284e4e..0000000
--- a/update-core-version.js
+++ /dev/null
@@ -1,8 +0,0 @@
-var fs = require('fs');
-const fileName = './bower.json';
-var bowerjson = require(fileName);
-
-const version = require('./package.json').version;
-bowerjson.dependencies["vaadin-core"] = version;
-
-fs.writeFileSync(fileName, JSON.stringify(bowerjson, null, 2));
diff --git a/vaadin.html b/vaadin.html
deleted file mode 100644
index 184aed0..0000000
--- a/vaadin.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<link rel="import" href="../vaadin-core/vaadin-core.html">
-<link rel="import" href="../vaadin-board/vaadin-board.html">
-<link rel="import" href="../vaadin-charts/vaadin-chart.html">
-<link rel="import" href="../vaadin-confirm-dialog/vaadin-confirm-dialog.html">
-<link rel="import" href="../vaadin-cookie-consent/vaadin-cookie-consent.html">
-<link rel="import" href="../vaadin-crud/vaadin-crud.html">
-<link rel="import" href="../vaadin-grid-pro/vaadin-grid-pro.html">
-<link rel="import" href="../vaadin-grid-pro/vaadin-grid-pro-edit-column.html">
-<link rel="import" href="../vaadin-rich-text-editor/vaadin-rich-text-editor.html">