-
Notifications
You must be signed in to change notification settings - Fork 260
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into add-docker-hosting
- Loading branch information
Showing
28 changed files
with
469 additions
and
161 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -5,6 +5,7 @@ import * as path from "https://deno.land/[email protected]/path/mod.ts"; | |
const formattingPromises = []; | ||
for await (const entry of walk("./resources/references/adr")) { | ||
if (entry.isDirectory) continue; | ||
if (!entry.path.endsWith('.md')) continue; | ||
if (path.basename(entry.path).startsWith('_')) continue; | ||
if (path.basename(entry.path) === 'index.md') continue; | ||
if (path.basename(entry.path) === 'README.md') continue; | ||
|
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 |
---|---|---|
|
@@ -5,6 +5,7 @@ import * as path from "https://deno.land/[email protected]/path/mod.ts"; | |
const formattingPromises = []; | ||
for await (const entry of walk("./resources/guidelines/code/core")) { | ||
if (entry.isDirectory) continue; | ||
if (!entry.path.endsWith('.md')) continue; | ||
if (path.basename(entry.path).startsWith('_')) continue; | ||
if (path.basename(entry.path) === 'index.md') continue; | ||
if (path.basename(entry.path) === 'README.md') continue; | ||
|
@@ -14,6 +15,10 @@ for await (const entry of walk("./resources/guidelines/code/core")) { | |
await Promise.allSettled(formattingPromises); | ||
|
||
function addHint(buffer, filePath) { | ||
if (filePath.includes('/adr/assets/')) { | ||
return buffer; | ||
} | ||
|
||
buffer += '\n'; | ||
buffer += '::: info\n'; | ||
buffer += 'This document represents core guidelines and has been mirrored from the core in our Shopware 6 repository.\n'; | ||
|
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
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
Binary file modified
BIN
-20.6 KB
(55%)
assets/adr/content-management/example-cms-aware-admin-menu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
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
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
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
Oops, something went wrong.