-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #865 from Sitecore/project-restructure
Project restructure
- Loading branch information
Showing
2,356 changed files
with
60,464 additions
and
67,392 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"extends": ["next", "prettier", "next/core-web-vitals", "eslint:recommended", "plugin:@next/next/recommended"], | ||
"globals": { | ||
"React": "readonly", | ||
"JSX": true | ||
}, | ||
"env": { | ||
"node": true, | ||
"browser": true | ||
}, | ||
"plugins": ["only-warn", "jest", "react"], | ||
"rules": { | ||
"react-hooks/rules-of-hooks": "off", | ||
"react/prop-types": "off", | ||
"no-unused-vars": "off" | ||
//"import/no-unused-modules": [1, { "unusedExports": true }] | ||
}, | ||
"settings": {}, | ||
"overrides": [ | ||
{ | ||
"files": ["*.stories.@(ts|tsx|js|jsx|mjs|cjs)"] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,20 @@ | ||
name: Developer Portal Links Checker | ||
on: | ||
workflow_dispatch: | ||
# runs every monday at 9 am | ||
# schedule: | ||
# - cron: "0 9 * * 1" | ||
|
||
jobs: | ||
devportal-md-links: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: gaurav-nelson/github-action-markdown-link-check@a996638015fbc9ef96beef1a41bbad7df8e06154 | ||
# checks all markdown files from /docs including all subfolders | ||
with: | ||
use-quiet-mode: 'yes' | ||
use-verbose-mode: 'yes' | ||
config-file: './.github/workflows/mlc-devportal.config.json' | ||
folder-path: './apps/devportal/data/markdown/partials, ./apps/devportal/data/markdown/pages/commerce, ./apps/devportal/data/markdown/pages/content-management, ./apps/devportal/data/markdown/pages/contribute, ./apps/devportal/data/markdown/pages/customer-data-management, ./apps/devportal/data/markdown/pages/dam-and-content-operations, ./apps/devportal/data/markdown/pages/devops, ./apps/devportal/data/markdown/pages/integrations, ./apps/devportal/data/markdown/pages/learn, ./apps/devportal/data/markdown/pages/marketing-automation, ./apps/devportal/data/markdown/pages/newsletter, ./apps/devportal/data/markdown/pages/personalization-testing, ./apps/devportal/data/markdown/pages/trials' | ||
file-path: './apps/devportal/data/markdown/pages/_newsletter.md, ./apps/devportal/data/markdown/pages/_search.md, ./apps/devportal/data/markdown/pages/community.md, ./apps/devportal/data/markdown/pages/discover.md, ./apps/devportal/data/markdown/pages/docs.md, ./apps/devportal/data/markdown/pages/help.md, ./apps/devportal/data/markdown/pages/home.md, ./apps/devportal/data/markdown/pages/learn.md' | ||
|
||
name: Developer Portal Links Checker | ||
on: | ||
workflow_dispatch: | ||
# runs every monday at 9 am | ||
# schedule: | ||
# - cron: "0 9 * * 1" | ||
|
||
jobs: | ||
devportal-md-links: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: gaurav-nelson/github-action-markdown-link-check@a996638015fbc9ef96beef1a41bbad7df8e06154 | ||
# checks all markdown files from /docs including all subfolders | ||
with: | ||
use-quiet-mode: 'yes' | ||
use-verbose-mode: 'yes' | ||
config-file: './.github/workflows/mlc-devportal.config.json' | ||
folder-path: './apps/devportal/data/markdown/partials, ./apps/devportal/data/markdown/pages/commerce, ./apps/devportal/data/markdown/pages/content-management, ./apps/devportal/data/markdown/pages/contribute, ./apps/devportal/data/markdown/pages/customer-data-management, ./apps/devportal/data/markdown/pages/dam-and-content-operations, ./apps/devportal/data/markdown/pages/devops, ./apps/devportal/data/markdown/pages/integrations, ./apps/devportal/data/markdown/pages/learn, ./apps/devportal/data/markdown/pages/marketing-automation, ./apps/devportal/data/markdown/pages/newsletter, ./apps/devportal/data/markdown/pages/personalization-testing, ./apps/devportal/data/markdown/pages/trials' | ||
file-path: './apps/devportal/data/markdown/pages/_newsletter.md, ./apps/devportal/data/markdown/pages/_search.md, ./apps/devportal/data/markdown/pages/community.md, ./apps/devportal/data/markdown/pages/discover.md, ./apps/devportal/data/markdown/pages/docs.md, ./apps/devportal/data/markdown/pages/help.md, ./apps/devportal/data/markdown/pages/home.md, ./apps/devportal/data/markdown/pages/learn.md' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,19 @@ | ||
name: Downloads Links Checker | ||
on: | ||
workflow_dispatch: | ||
# runs every monday at 9 am | ||
# schedule: | ||
# - cron: "0 9 * * 1" | ||
|
||
jobs: | ||
downloads-md-links: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: gaurav-nelson/github-action-markdown-link-check@a996638015fbc9ef96beef1a41bbad7df8e06154 | ||
# checks all markdown files from /docs including all subfolders | ||
with: | ||
use-quiet-mode: 'yes' | ||
use-verbose-mode: 'yes' | ||
config-file: './.github/workflows/mlc-downloads.config.json' | ||
folder-path: './apps/devportal/data/markdown/pages/downloads/' | ||
|
||
name: Downloads Links Checker | ||
on: | ||
workflow_dispatch: | ||
# runs every monday at 9 am | ||
# schedule: | ||
# - cron: "0 9 * * 1" | ||
|
||
jobs: | ||
downloads-md-links: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: gaurav-nelson/github-action-markdown-link-check@a996638015fbc9ef96beef1a41bbad7df8e06154 | ||
# checks all markdown files from /docs including all subfolders | ||
with: | ||
use-quiet-mode: 'yes' | ||
use-verbose-mode: 'yes' | ||
config-file: './.github/workflows/mlc-downloads.config.json' | ||
folder-path: './apps/devportal/data/markdown/pages/downloads/' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,32 @@ | ||
{ | ||
"replacementPatterns": [ | ||
{ | ||
"pattern": "^/", | ||
"replacement": "https://developers.sitecore.com/" | ||
}, | ||
{ | ||
"pattern": "^https://kb.sitecore.net/articles/", | ||
"replacement": "https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB0" | ||
} | ||
], | ||
"ignorePatterns": [ | ||
{ | ||
"pattern": "^#" | ||
}, | ||
{ | ||
"pattern": "^http://localhost:3000" | ||
} | ||
], | ||
"httpHeaders": [ | ||
{ | ||
"urls": ["https://github.com/", "https://guides.github.com/", "https://help.github.com/", "https://docs.github.com/", "kb.sitecore.net"], | ||
"headers": { | ||
"Accept-Encoding": "zstd, br, gzip, deflate" | ||
} | ||
} | ||
], | ||
"retryOn429": true, | ||
"retryCount": 5, | ||
"fallbackRetryDelay": "30s", | ||
"aliveStatusCodes": [200, 206, 403] | ||
} | ||
{ | ||
"replacementPatterns": [ | ||
{ | ||
"pattern": "^/", | ||
"replacement": "https://developers.sitecore.com/" | ||
}, | ||
{ | ||
"pattern": "^https://kb.sitecore.net/articles/", | ||
"replacement": "https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB0" | ||
} | ||
], | ||
"ignorePatterns": [ | ||
{ | ||
"pattern": "^#" | ||
}, | ||
{ | ||
"pattern": "^http://localhost:3000" | ||
} | ||
], | ||
"httpHeaders": [ | ||
{ | ||
"urls": ["https://github.com/", "https://guides.github.com/", "https://help.github.com/", "https://docs.github.com/", "kb.sitecore.net"], | ||
"headers": { | ||
"Accept-Encoding": "zstd, br, gzip, deflate" | ||
} | ||
} | ||
], | ||
"retryOn429": true, | ||
"retryCount": 5, | ||
"fallbackRetryDelay": "30s", | ||
"aliveStatusCodes": [200, 206, 403] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
{ | ||
"replacementPatterns": [ | ||
{ | ||
"pattern": "^/", | ||
"replacement": "https://developers.sitecore.com/" | ||
}, | ||
{ | ||
"pattern": "^https://kb.sitecore.net/articles/", | ||
"replacement": "https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB0" | ||
} | ||
], | ||
"ignorePatterns": [ | ||
{ | ||
"pattern": "^#" | ||
} | ||
], | ||
"httpHeaders": [ | ||
{ | ||
"urls": ["https://github.com/", "https://guides.github.com/", "https://help.github.com/", "https://docs.github.com/", "kb.sitecore.net"], | ||
"headers": { | ||
"Accept-Encoding": "zstd, br, gzip, deflate" | ||
} | ||
} | ||
], | ||
"retryOn429": true, | ||
"retryCount": 5, | ||
"fallbackRetryDelay": "30s", | ||
"aliveStatusCodes": [200, 206, 403] | ||
} | ||
{ | ||
"replacementPatterns": [ | ||
{ | ||
"pattern": "^/", | ||
"replacement": "https://developers.sitecore.com/" | ||
}, | ||
{ | ||
"pattern": "^https://kb.sitecore.net/articles/", | ||
"replacement": "https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB0" | ||
} | ||
], | ||
"ignorePatterns": [ | ||
{ | ||
"pattern": "^#" | ||
} | ||
], | ||
"httpHeaders": [ | ||
{ | ||
"urls": ["https://github.com/", "https://guides.github.com/", "https://help.github.com/", "https://docs.github.com/", "kb.sitecore.net"], | ||
"headers": { | ||
"Accept-Encoding": "zstd, br, gzip, deflate" | ||
} | ||
} | ||
], | ||
"retryOn429": true, | ||
"retryCount": 5, | ||
"fallbackRetryDelay": "30s", | ||
"aliveStatusCodes": [200, 206, 403] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,46 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# Dependencies | ||
node_modules | ||
.pnp | ||
.pnp.js | ||
|
||
# Local env files | ||
.env | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
# Testing | ||
coverage | ||
|
||
# Turbo | ||
.turbo | ||
|
||
# Vercel | ||
.vercel | ||
|
||
# Build Outputs | ||
.next/ | ||
out/ | ||
build | ||
dist | ||
|
||
|
||
# Debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Misc | ||
.DS_Store | ||
*.pem | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# Dependencies | ||
node_modules | ||
.pnp | ||
.pnp.js | ||
|
||
# Local env files | ||
.env | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
# Testing | ||
coverage | ||
|
||
# Turbo | ||
.turbo | ||
|
||
# Vercel | ||
.vercel | ||
|
||
# Build Outputs | ||
.next/ | ||
out/ | ||
build | ||
dist | ||
|
||
|
||
# Debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Misc | ||
.DS_Store | ||
*.pem | ||
|
||
.vercel | ||
.env*.local | ||
|
||
# generated postbuild | ||
robots.txt | ||
sitemap*.xml | ||
node_modules |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"*.ts?(x)": ["prettier -w --config .prettierrc"], | ||
"*.js?(x)": ["prettier -w --config .prettierrc"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,5 +29,4 @@ yarn-error.log* | |
.env.production.local | ||
|
||
# vercel | ||
.vercel | ||
.turbo | ||
.vercel |
File renamed without changes.
Oops, something went wrong.