chore: remove not needed bundle-config files (#41)
This commit is contained in:
Родитель
c70f075691
Коммит
728eb0b5b3
|
@ -4,7 +4,6 @@ You can use this file to perform app-level initialization, but the primary
|
|||
purpose of the file is to pass control to the app’s first module.
|
||||
*/
|
||||
import * as app from "tns-core-modules/application";
|
||||
import "./bundle-config";
|
||||
|
||||
app.run({ moduleName: "app-root/app-root" });
|
||||
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
if ((global).TNS_WEBPACK) {
|
||||
// Register custom modules
|
||||
global.registerModule("nativescript-ui-sidedrawer",
|
||||
() => require("../node_modules/nativescript-ui-sidedrawer"));
|
||||
}
|
|
@ -3,7 +3,6 @@ In NativeScript, the app.js file is the entry point to your application.
|
|||
You can use this file to perform app-level initialization, but the primary
|
||||
purpose of the file is to pass control to the app’s first module.
|
||||
*/
|
||||
require("./bundle-config");
|
||||
const application = require("tns-core-modules/application");
|
||||
|
||||
application.run({ moduleName: "app-root/app-root" });
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
if (global.TNS_WEBPACK) {
|
||||
// Register custom modules
|
||||
global.registerModule("nativescript-ui-sidedrawer",
|
||||
() => require("../node_modules/nativescript-ui-sidedrawer"));
|
||||
}
|
|
@ -1,7 +1,5 @@
|
|||
import * as app from "tns-core-modules/application";
|
||||
|
||||
import "./bundle-config";
|
||||
|
||||
/* ***********************************************************
|
||||
* The {N} Kinvey plugin needs some initialization steps before it is ready
|
||||
* for use. Check out the initialization script at /shared/kinvey.common.ts
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
if (global.TNS_WEBPACK) {
|
||||
// Register nativescript-ui-listview module
|
||||
global.registerModule("nativescript-ui-listview",
|
||||
() => require("../node_modules/nativescript-ui-listview"));
|
||||
}
|
|
@ -1,5 +1,3 @@
|
|||
require("./bundle-config");
|
||||
|
||||
const app = require("tns-core-modules/application");
|
||||
|
||||
/* ***********************************************************
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
if (global.TNS_WEBPACK) {
|
||||
// Register nativescript-ui-listview module
|
||||
global.registerModule("nativescript-ui-listview", () =>
|
||||
require("../node_modules/nativescript-ui-listview"));
|
||||
}
|
|
@ -1,7 +1,5 @@
|
|||
import * as app from "tns-core-modules/application";
|
||||
|
||||
import "./bundle-config";
|
||||
|
||||
/*
|
||||
The {N} Firebase plugin needs some initialization steps before it is ready
|
||||
for use. Check out the initialization script at /shared/firebase.common.ts
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
if (global.TNS_WEBPACK) {
|
||||
// Register nativescript-ui-listview module
|
||||
global.registerModule("nativescript-ui-listview",
|
||||
() => require("../node_modules/nativescript-ui-listview"));
|
||||
}
|
|
@ -1,5 +1,3 @@
|
|||
require("./bundle-config");
|
||||
|
||||
const app = require("tns-core-modules/application");
|
||||
|
||||
/*
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
if (global.TNS_WEBPACK) {
|
||||
// Register nativescript-ui-listview module
|
||||
global.registerModule("nativescript-ui-listview", () =>
|
||||
require("../node_modules/nativescript-ui-listview"));
|
||||
}
|
Загрузка…
Ссылка в новой задаче