From d32881e1678b9f3de2e8c806a9dcb03e66a98fd9 Mon Sep 17 00:00:00 2001 From: dmnre Date: Thu, 12 Feb 2026 17:20:22 +0300 Subject: [PATCH] [major] feat: Release examples --- ProjectDescriptionHelpersPluginExample/Plugin.swift | 2 +- TemplatesPluginExample/Templates/platform/platform.swift | 1 + plugins.json | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ProjectDescriptionHelpersPluginExample/Plugin.swift b/ProjectDescriptionHelpersPluginExample/Plugin.swift index 52ea3a4..833ff12 100644 --- a/ProjectDescriptionHelpersPluginExample/Plugin.swift +++ b/ProjectDescriptionHelpersPluginExample/Plugin.swift @@ -1,5 +1,5 @@ import ProjectDescription let plugin = Plugin( - name: "HelpersPluginExample" + name: "ProjectDescriptionHelpersPluginExample" ) diff --git a/TemplatesPluginExample/Templates/platform/platform.swift b/TemplatesPluginExample/Templates/platform/platform.swift index 2ab80d7..a1cf767 100644 --- a/TemplatesPluginExample/Templates/platform/platform.swift +++ b/TemplatesPluginExample/Templates/platform/platform.swift @@ -1,3 +1,4 @@ +import Foundation import ProjectDescription let nameAttribute: Template.Attribute = .required("name") diff --git a/plugins.json b/plugins.json index a0c1f42..36bf9d7 100644 --- a/plugins.json +++ b/plugins.json @@ -2,6 +2,8 @@ "plugins": [ { "name": "ExecutablePluginExample" }, { "name": "WorkspaceMapperExample" }, + { "name": "ProjectDescriptionHelpersPluginExample" }, + { "name": "TemplatesPluginExample" }, { "name": "ImpactAnalysis"} ] }