From 9711c2d59d5429beca91aa126cbae8e73c17cb01 Mon Sep 17 00:00:00 2001 From: sis0k0 Date: Wed, 7 Aug 2019 11:14:58 +0300 Subject: [PATCH] refactor: remove obsolete comment include the `--bundle flag` The webpack configurations contain an obsolete comment which is no longer needed since {N} 6.0 is webpack-only. --- demo/AngularApp/webpack.config.js | 1 - demo/JavaScriptApp/webpack.config.js | 1 - demo/TypeScriptApp/webpack.config.js | 1 - templates/webpack.angular.js | 1 - templates/webpack.javascript.js | 1 - templates/webpack.typescript.js | 1 - templates/webpack.vue.js | 1 - 7 files changed, 7 deletions(-) diff --git a/demo/AngularApp/webpack.config.js b/demo/AngularApp/webpack.config.js index 8137073f..e570df21 100644 --- a/demo/AngularApp/webpack.config.js +++ b/demo/AngularApp/webpack.config.js @@ -37,7 +37,6 @@ module.exports = env => { const { // The 'appPath' and 'appResourcesPath' values are fetched from // the nsconfig.json configuration file - // when bundling with `tns run android|ios --bundle`. appPath = "src", appResourcesPath = "App_Resources", diff --git a/demo/JavaScriptApp/webpack.config.js b/demo/JavaScriptApp/webpack.config.js index ec4ea0b5..90b8246e 100644 --- a/demo/JavaScriptApp/webpack.config.js +++ b/demo/JavaScriptApp/webpack.config.js @@ -32,7 +32,6 @@ module.exports = env => { const { // The 'appPath' and 'appResourcesPath' values are fetched from // the nsconfig.json configuration file - // when bundling with `tns run android|ios --bundle`. appPath = "app", appResourcesPath = "app/App_Resources", diff --git a/demo/TypeScriptApp/webpack.config.js b/demo/TypeScriptApp/webpack.config.js index 64ad184c..2e0a28eb 100644 --- a/demo/TypeScriptApp/webpack.config.js +++ b/demo/TypeScriptApp/webpack.config.js @@ -33,7 +33,6 @@ module.exports = env => { const { // The 'appPath' and 'appResourcesPath' values are fetched from // the nsconfig.json configuration file - // when bundling with `tns run android|ios --bundle`. appPath = "app", appResourcesPath = "app/App_Resources", diff --git a/templates/webpack.angular.js b/templates/webpack.angular.js index fa623eee..6757db44 100644 --- a/templates/webpack.angular.js +++ b/templates/webpack.angular.js @@ -36,7 +36,6 @@ module.exports = env => { const { // The 'appPath' and 'appResourcesPath' values are fetched from // the nsconfig.json configuration file - // when bundling with `tns run android|ios --bundle`. appPath = "src", appResourcesPath = "App_Resources", diff --git a/templates/webpack.javascript.js b/templates/webpack.javascript.js index f9add996..d836af07 100644 --- a/templates/webpack.javascript.js +++ b/templates/webpack.javascript.js @@ -31,7 +31,6 @@ module.exports = env => { const { // The 'appPath' and 'appResourcesPath' values are fetched from // the nsconfig.json configuration file - // when bundling with `tns run android|ios --bundle`. appPath = "app", appResourcesPath = "app/App_Resources", diff --git a/templates/webpack.typescript.js b/templates/webpack.typescript.js index 9e0a3e84..047c96aa 100644 --- a/templates/webpack.typescript.js +++ b/templates/webpack.typescript.js @@ -32,7 +32,6 @@ module.exports = env => { const { // The 'appPath' and 'appResourcesPath' values are fetched from // the nsconfig.json configuration file - // when bundling with `tns run android|ios --bundle`. appPath = "app", appResourcesPath = "app/App_Resources", diff --git a/templates/webpack.vue.js b/templates/webpack.vue.js index 61068c7f..d9d85ba3 100644 --- a/templates/webpack.vue.js +++ b/templates/webpack.vue.js @@ -35,7 +35,6 @@ module.exports = env => { const { // The 'appPath' and 'appResourcesPath' values are fetched from // the nsconfig.json configuration file - // when bundling with `tns run android|ios --bundle`. appPath = "app", appResourcesPath = "app/App_Resources",