Skip to content

Commit d8d451b

Browse files
committed
V14: Integrations (Dynamics)
- Resolve some conflicts with gitignore file
1 parent e6429ac commit d8d451b

File tree

4 files changed

+34
-4
lines changed

4 files changed

+34
-4
lines changed

.gitignore

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,12 @@ src/Testsite/App_Plugins/Our.Umbraco.DashIt
66
src/Testsite/umbraco
77
src/Testsite/Views
88
src/Testsite/wwwroot
9-
src/Umbraco.Cms.Integrations.Commerce.Shopify/wwwroot
10-
src/Umbraco.Cms.Integrations.Crm.Hubspot/wwwroot
11-
src/Umbraco.Cms.Integrations.Crm.Dynamics/wwwroot
9+
src/Umbraco.Cms.Integrations.Commerce.Shopify/wwwroot/*
10+
!src/Umbraco.Cms.Integrations.Commerce.Shopify/wwwroot/umbraco-package.json
11+
src/Umbraco.Cms.Integrations.Crm.Hubspot/wwwroot/*
12+
!src/Umbraco.Cms.Integrations.Crm.Hubspot/wwwroot/umbraco-package.json
13+
src/Umbraco.Cms.Integrations.Crm.Dynamics/wwwroot/*
14+
!src/Umbraco.Cms.Integrations.Crm.Dynamics/wwwroot/umbraco-package.json
1215

1316

1417
# User-specific files
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const outputPath = 'Debug' !== 'Release' ? '../wwwroot' : '../obj/Debug/net8.0/clientassets'
1+
export const outputPath = 'Release' !== 'Release' ? '../wwwroot' : '../obj/Release/net8.0/clientassets'
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"id": "Umbraco.Cms.Integrations.Commerce.Shopify",
3+
"name": "Umbraco CMS Integrations: Commerce - Shopify",
4+
"version": "1.0.0",
5+
"extensions": [
6+
{
7+
"name": "Umbraco EntryPoint",
8+
"alias": "Umb.Shopify.EntryPoint",
9+
"type": "entryPoint",
10+
"js": "/App_Plugins/Shopify/shopify.js"
11+
}
12+
]
13+
}
14+
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"id": "Umbraco.Cms.Integrations.Crm.HubSpot",
3+
"name": "Umbraco CMS Integrations: CRM - HubSpot",
4+
"version": "5.0.0",
5+
"extensions": [
6+
{
7+
"name": "Umbraco EntryPoint",
8+
"alias": "Umb.Hubspot.EntryPoint",
9+
"type": "entryPoint",
10+
"js": "/App_Plugins/HubspotForms/hubspot.js"
11+
}
12+
]
13+
}

0 commit comments

Comments
 (0)