Skip to content

Commit d29bc6d

Browse files
committed
chore: remove extensions note that appeared as a warning
1 parent 0783cea commit d29bc6d

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
@@ -1574,14 +1574,12 @@ export class IOSProjectService
15741574
);
15751575
const platformData = this.getPlatformData(projectData);
15761576
const pbxProjPath = this.getPbxProjPath(projectData);
1577-
const addedExtensionsFromResources =
1578-
await this.$iOSExtensionsService.addExtensionsFromPath({
1579-
extensionsFolderPath: resorcesExtensionsPath,
1580-
projectData,
1581-
platformData,
1582-
pbxProjPath,
1583-
});
1584-
let addedExtensionsFromPlugins = false;
1577+
await this.$iOSExtensionsService.addExtensionsFromPath({
1578+
extensionsFolderPath: resorcesExtensionsPath,
1579+
projectData,
1580+
platformData,
1581+
pbxProjPath,
1582+
});
15851583
for (const pluginIndex in pluginsData) {
15861584
const pluginData = pluginsData[pluginIndex];
15871585
const pluginPlatformsFolderPath = pluginData.pluginPlatformsFolderPath(
@@ -1592,21 +1590,12 @@ export class IOSProjectService
15921590
pluginPlatformsFolderPath,
15931591
constants.NATIVE_EXTENSION_FOLDER,
15941592
);
1595-
const addedExtensionFromPlugin =
1596-
await this.$iOSExtensionsService.addExtensionsFromPath({
1597-
extensionsFolderPath: extensionPath,
1598-
projectData,
1599-
platformData,
1600-
pbxProjPath,
1601-
});
1602-
addedExtensionsFromPlugins =
1603-
addedExtensionsFromPlugins || addedExtensionFromPlugin;
1604-
}
1605-
1606-
if (addedExtensionsFromResources || addedExtensionsFromPlugins) {
1607-
this.$logger.warn(
1608-
"Let us know if there are other Extension features you'd like! https://github.com/NativeScript/NativeScript/issues",
1609-
);
1593+
await this.$iOSExtensionsService.addExtensionsFromPath({
1594+
extensionsFolderPath: extensionPath,
1595+
projectData,
1596+
platformData,
1597+
pbxProjPath,
1598+
});
16101599
}
16111600
}
16121601

0 commit comments

Comments
 (0)