Skip to content

Commit

Permalink
fix: ogp and typo (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
Himenon authored Jun 13, 2022
1 parent 4b049a8 commit 726c9d3
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions content/docs/manifest/manifest-management.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ description: BFFにおけるKubernetesのManifest管理について問題の整

## 移行後の各Componentのファイル数の規模感

[導入](/docs/01/introduction/#kubernetesでの稼働規模)でも提示していますが改めて、**フロントエンドに関係するマイクロサービス**に関係するManifestは以下の規模で存在しています
これは簡単に管理するとは言えないコンポーネント数があり、これからも増えていきまうs.
[導入](/docs/01/introduction/#kubernetesでの稼働規模)でも提示していますが改めて、**フロントエンドに関係するマイクロサービス**のManifestは以下の規模で存在しています
これは簡単に管理するとは言えないコンポーネント数があり、これからも増えていきます。

| Component | ファイル数 |
| :----------------------------------------- | ---------: |
Expand Down
Binary file added ogp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "index.js",
"scripts": {
"build": "run-s clean gen:md gen:tex replace:tex copy:png copy:pdf gen:dvi gen:dvi gen:pdf",
"clean": "del-cli tex-workspace/article.* !tex-workspace/article.tex tex-workspace/sub/* !tex-workspace/sub/.gitkeep",
"clean": "del-cli tex-workspace/article.* !tex-workspace/article.tex tex-workspace/sub !tex-workspace/sub/.gitkeep",
"replace:tex": "node ./scripts/tex-replace.mjs",
"gen:md": "node ./scripts/gen-md.mjs",
"gen:tex": "docker run --rm --volume $(pwd)/tex-workspace:/data pandoc/latex -d pandoc.yaml -r markdown-auto_identifiers --no-highlight",
Expand Down
1 change: 1 addition & 0 deletions scripts/gen-md.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ const replaceCodeBlock = (doc) => {
};

const main = () => {
fs.mkdirSync("tex-workspace/sub", { recursive: true });
const writeStream = fs.createWriteStream("tex-workspace/sub/article.md", "utf-8");
toc.map((item) => {
const doc = fs.readFileSync(item, "utf-8");
Expand Down
Binary file modified tex-workspace/article.pdf
Binary file not shown.

0 comments on commit 726c9d3

Please sign in to comment.