Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,19 @@ jobs:
with:
dotnet-version: 8.0.x

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22

- name: Install client dependencies
run: npm ci
working-directory: src/Client

- name: Build client assets
run: npm run build
working-directory: src/Client

- name: Restore dependencies
run: dotnet restore

Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,19 @@ jobs:
with:
dotnet-version: 8.0.x

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22

- name: Install client dependencies
run: npm ci
working-directory: src/Client

- name: Build client assets
run: npm run build
working-directory: src/Client

- name: Restore dependencies
run: dotnet restore

Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,9 @@ FodyWeavers.xsd
# Exclude the entire .idea folder for JetBrains IDEs
.idea/

# Client build artifacts
src/Client/dist/*

# Include specific project configuration files
!.idea/misc.xml
!.idea/modules.xml
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
22
1 change: 0 additions & 1 deletion src/Client/dist/entry.kxh.2f8ca3a4baf4f24f2fb3.js

This file was deleted.

3 changes: 3 additions & 0 deletions src/Client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"version": "1.0.0",
"description": "Custom Kentico Xperience administration project.",
"private": true,
"engines": {
"node": ">=22"
},
"scripts": {
"start": "webpack serve --mode development",
"dev:buildlike": "webpack serve --mode development --env buildlike=true",
Expand Down
2 changes: 1 addition & 1 deletion src/XperienceCommunity.Sustainability.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PropertyGroup>
<Title>Xperience by Kentico Sustainability</Title>
<PackageId>XperienceCommunity.Sustainability</PackageId>
<Version>2.7.0</Version>
<Version>2.7.1</Version>
<Authors>Liam Goldfinch</Authors>
<Company>Liam Goldfinch</Company>
<PackageIcon>icon.png</PackageIcon>
Expand Down