From 94b8bfe5d8ed0ec19f624f3267543454357ee4e5 Mon Sep 17 00:00:00 2001 From: Erik Jan de Wit Date: Thu, 11 Aug 2016 10:19:15 +0200 Subject: [PATCH] changed from cordova light to cordova app --- .gitignore | 4 +++- www/Gruntfile.js => Gruntfile.js | 4 ++-- config.xml | 28 ++++++++++++++++++++++++++++ www/package.json => package.json | 0 www/config.json | 7 ------- 5 files changed, 33 insertions(+), 10 deletions(-) rename www/Gruntfile.js => Gruntfile.js (97%) create mode 100644 config.xml rename www/package.json => package.json (100%) delete mode 100644 www/config.json diff --git a/.gitignore b/.gitignore index 17f8af8..e1aa4b0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ node_modules -*~ \ No newline at end of file +*~ +plugins +platforms \ No newline at end of file diff --git a/www/Gruntfile.js b/Gruntfile.js similarity index 97% rename from www/Gruntfile.js rename to Gruntfile.js index a713e4c..20b1678 100644 --- a/www/Gruntfile.js +++ b/Gruntfile.js @@ -21,7 +21,7 @@ module.exports = function (grunt) { // Project settings app: { // configurable paths - app: '.', + app: 'www', url: '', default_local_server_url: 'http://localhost:8001' }, @@ -81,7 +81,7 @@ module.exports = function (grunt) { }, browserify: { - 'main.js': ['js/*.js'] + 'www/main.js': ['www/js/*.js'] } }); diff --git a/config.xml b/config.xml new file mode 100644 index 0000000..a957d68 --- /dev/null +++ b/config.xml @@ -0,0 +1,28 @@ + + + Helloworld + + Helloworld with RHMAP. + + + Feedhenry + + + + + + + + + + + + + + + + + + + + diff --git a/www/package.json b/package.json similarity index 100% rename from www/package.json rename to package.json diff --git a/www/config.json b/www/config.json deleted file mode 100644 index ba47e40..0000000 --- a/www/config.json +++ /dev/null @@ -1,7 +0,0 @@ -{"plugins":[ - { - "id": "cordova-plugin-whitelist", - "version": "1.2.2", - "url": "https://github.com/apache/cordova-plugin-whitelist.git#rel/1.2.2" - } -]}