Skip to content

Commit 5ab5418

Browse files
committed
chore: rename src\client\frontend back to src\client\ui
1 parent 9e36433 commit 5ab5418

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+60
-63
lines changed

.azdo/pipelines/azure-dev.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ trigger:
77
include:
88
- .azdo/*
99
- src/server/*
10-
- src/client/frontend/*
10+
- src/client/ui/*
1111
- infra/*
1212

1313
pr:
@@ -22,7 +22,7 @@ pr:
2222
include:
2323
- .azdo/*
2424
- src/server/*
25-
- src/client/frontend/*
25+
- src/client/ui/*
2626
- infra/*
2727

2828
parameters:
@@ -179,30 +179,30 @@ stages:
179179
inputs:
180180
command: custom
181181
custom: tool
182-
arguments: install --tool-path ./src/client/frontend nbgv --version 3.9.50
182+
arguments: install --tool-path ./src/client/ui nbgv --version 3.9.50
183183

184184
- script: ./nbgv cloud -a
185-
workingDirectory: src/client/frontend
185+
workingDirectory: src/client/ui
186186
displayName: Set Build Number & Version Variables
187187

188188
- task: Npm@1
189189
displayName: "Install Frontend Dependencies"
190190
inputs:
191191
command: "install"
192-
workingDir: "src/client/frontend"
192+
workingDir: "src/client/ui"
193193

194194
- task: Npm@1
195195
displayName: "Run Frontend Unit Tests"
196196
inputs:
197197
command: "custom"
198-
workingDir: "src/client/frontend"
198+
workingDir: "src/client/ui"
199199
customCommand: "test -- --run --reporter=junit --reporter=default --outputFile.junit=./test-results/junit.xml"
200200

201201
- task: PublishTestResults@2
202202
displayName: "Publish Frontend Test Results"
203203
inputs:
204204
testResultsFormat: "JUnit"
205-
testResultsFiles: "src/client/frontend/test-results/junit.xml"
205+
testResultsFiles: "src/client/ui/test-results/junit.xml"
206206
failTaskOnFailedTests: true
207207
condition: succeededOrFailed()
208208

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ updates:
66
interval: "weekly"
77
open-pull-requests-limit: 10
88
- package-ecosystem: npm
9-
directory: "/src/client/frontend"
9+
directory: "/src/client/ui"
1010
schedule:
1111
interval: "weekly"
1212
open-pull-requests-limit: 10

.github/skills/build-frontend/SKILL.md

Lines changed: 2 additions & 2 deletions

.github/skills/build-frontend/build-frontend.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/// <summary>
66
/// Frontend build helper script - file-based app
7-
/// Runs npm build in src/client/frontend/, outputs errors to stderr
7+
/// Runs npm build in src/client/ui/, outputs errors to stderr
88
/// Exit codes: 0 = success, 1 = build failure
99
/// Usage: dotnet build-frontend.cs
1010
/// </summary>
@@ -14,7 +14,7 @@
1414
try
1515
{
1616
var repoRoot = FindRepositoryRoot();
17-
var frontendDir = Path.Combine(repoRoot, "src", "client", "frontend");
17+
var frontendDir = Path.Combine(repoRoot, "src", "client", "ui");
1818

1919
if (!Directory.Exists(frontendDir))
2020
{

.github/skills/fake-survey-gen-foundation/SKILL.md

Lines changed: 3 additions & 3 deletions

.github/skills/implement-feature/SKILL.md

Lines changed: 2 additions & 2 deletions

.github/skills/test-frontend-units/SKILL.md

Lines changed: 6 additions & 6 deletions

azure.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ services:
1515
tag: ${API_VERSION}
1616
ui:
1717
language: ts
18-
project: ./src/client/frontend
18+
project: ./src/client/ui
1919
host: containerapp
2020
dist: dist
2121
docker:

0 commit comments

Comments
 (0)