Skip to content

Commit 9a80b28

Browse files
authored
chore: marked を v14→v15 へアップデート (#1816)
marked を v14→v15 へアップデート - <https://github.com/markedjs/marked/releases>
1 parent 2eea729 commit 9a80b28

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

source/use-case/nodecli/md-to-html/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ markedのパッケージは[npm][]で配布されているので、`npm install`
1818
それでは、`npm install`コマンドを使って`marked`パッケージをインストールします。
1919
このコマンドの引数にはインストールするパッケージの名前とそのバージョンを`@`記号でつなげて指定できます。
2020
バージョンを指定せずにインストールすれば、その時点での最新の安定版が自動的に選択されます。
21-
次のコマンドを実行して、markedのバージョン14.0をインストールします。[^1]
21+
次のコマンドを実行して、markedのバージョン15.0をインストールします。[^1]
2222

2323
```shell
24-
$ npm install marked@14.0
24+
$ npm install marked@15.0
2525
```
2626

2727
インストールが完了すると、`package.json`ファイルは次のようになっています。
@@ -30,7 +30,7 @@ $ npm install marked@14.0
3030

3131
また、`npm install`をすると同時に`package-lock.json`ファイルが生成されています。
3232
このファイルはnpmがインストールしたパッケージの、実際のバージョンを記録するためのものです。
33-
先ほどmarkedのバージョンを`14.0`としましたが、実際にインストールされるのは`14.0.x`に一致する最新のバージョンです。
33+
先ほどmarkedのバージョンを`15.0`としましたが、実際にインストールされるのは`15.0.x`に一致する最新のバージョンです。
3434
`package-lock.json`ファイルには実際にインストールされたバージョンが記録されています。
3535
これによって、再び`npm install`を実行したときに、異なるバージョンがインストールされるのを防ぎます。
3636

source/use-case/nodecli/md-to-html/src/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/use-case/nodecli/md-to-html/src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
"author": "",
1212
"license": "ISC",
1313
"dependencies": {
14-
"marked": "^14.0.0"
14+
"marked": "^15.0.12"
1515
}
1616
}

source/use-case/nodecli/refactor-and-unittest/src/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/use-case/nodecli/refactor-and-unittest/src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
"author": "",
1212
"license": "ISC",
1313
"dependencies": {
14-
"marked": "^14.0.0"
14+
"marked": "^15.0.12"
1515
}
1616
}

0 commit comments

Comments
 (0)