Skip to content

Commit ef90697

Browse files
authored
chore: remove extensions note that appeared as a warning (#6137)
1 parent 8a7c3ec commit ef90697

1 file changed

Lines changed: 12 additions & 23 deletions

File tree

lib/services/ios-project-service.ts

Lines changed: 12 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1572,14 +1572,12 @@ export class IOSProjectService
15721572
);
15731573
const platformData = this.getPlatformData(projectData);
15741574
const pbxProjPath = this.getPbxProjPath(projectData);
1575-
const addedExtensionsFromResources =
1576-
await this.$iOSExtensionsService.addExtensionsFromPath({
1577-
extensionsFolderPath: resorcesExtensionsPath,
1578-
projectData,
1579-
platformData,
1580-
pbxProjPath,
1581-
});
1582-
let addedExtensionsFromPlugins = false;
1575+
await this.$iOSExtensionsService.addExtensionsFromPath({
1576+
extensionsFolderPath: resorcesExtensionsPath,
1577+
projectData,
1578+
platformData,
1579+
pbxProjPath,
1580+
});
15831581
for (const pluginIndex in pluginsData) {
15841582
const pluginData = pluginsData[pluginIndex];
15851583
const pluginPlatformsFolderPath = pluginData.pluginPlatformsFolderPath(
@@ -1590,21 +1588,12 @@ export class IOSProjectService
15901588
pluginPlatformsFolderPath,
15911589
constants.NATIVE_EXTENSION_FOLDER,
15921590
);
1593-
const addedExtensionFromPlugin =
1594-
await this.$iOSExtensionsService.addExtensionsFromPath({
1595-
extensionsFolderPath: extensionPath,
1596-
projectData,
1597-
platformData,
1598-
pbxProjPath,
1599-
});
1600-
addedExtensionsFromPlugins =
1601-
addedExtensionsFromPlugins || addedExtensionFromPlugin;
1602-
}
1603-
1604-
if (addedExtensionsFromResources || addedExtensionsFromPlugins) {
1605-
this.$logger.warn(
1606-
"Let us know if there are other Extension features you'd like! https://github.com/NativeScript/NativeScript/issues",
1607-
);
1591+
await this.$iOSExtensionsService.addExtensionsFromPath({
1592+
extensionsFolderPath: extensionPath,
1593+
projectData,
1594+
platformData,
1595+
pbxProjPath,
1596+
});
16081597
}
16091598
}
16101599

0 commit comments

Comments
 (0)