Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 969d3e7

Browse files
committed
show if lang component and fix build
1 parent 4b15d6a commit 969d3e7

File tree

159 files changed

+947
-14162
lines changed

Some content is hidden

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

159 files changed

+947
-14162
lines changed

cypress/e2e/broken-links.cy.ts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const isExternalUrl = (url: string) => {
3333
return !url.includes('localhost')
3434
}
3535

36-
const req = (url: string, retryCount = 0) => {
36+
const req = (url: string, retryCount = 0): any => {
3737
return cy
3838
.request({
3939
url,
@@ -71,7 +71,8 @@ describe('Broken links test suite', () => {
7171
(link.getAttribute('href') &&
7272
link.getAttribute('href')?.includes(l)) ||
7373
//@ts-ignore
74-
(link.getAttribute('src') && link.getAttribute('src').includes(l))
74+
(link.getAttribute('src') &&
75+
link.getAttribute('src').includes(l)),
7576
)
7677
})
7778
.each((link) => {
@@ -90,7 +91,7 @@ describe('Broken links test suite', () => {
9091
let acceptableCodes = CORRECT_CODES
9192
if (REDIRECT_CODES.includes(res.status) && !isExternalUrl(url)) {
9293
assert.fail(
93-
`${url} returned ${res.status} to ${res.headers['location']}`
94+
`${url} returned ${res.status} to ${res.headers['location']}`,
9495
)
9596
} else {
9697
acceptableCodes = [
@@ -106,7 +107,7 @@ describe('Broken links test suite', () => {
106107

107108
expect(res.status).oneOf(
108109
acceptableCodes,
109-
`${url} returned ${res.status}`
110+
`${url} returned ${res.status}`,
110111
)
111112
})
112113
}
@@ -129,7 +130,7 @@ describe('Current links test suite', () => {
129130
? '/docs'
130131
: `/docs${p.loc
131132
.substring(PROD_BASE_URL.length, p.loc.length)
132-
.replace('/_index', '')}`
133+
.replace('/_index', '')}`,
133134
)
134135
})
135136
})

docs/reference/cli/installation.mdx

Lines changed: 0 additions & 71 deletions
This file was deleted.

docs/reference/cli/local-development.mdx

Lines changed: 0 additions & 51 deletions
This file was deleted.

docs/reference/cli/stacks.mdx

Lines changed: 0 additions & 136 deletions
This file was deleted.

docs/reference/csharp/v0.mdx

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)