File tree 3 files changed +5
-4
lines changed
3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 40
40
Include the script at the bottom of the page before the closing body tag.
41
41
42
42
``` html
43
- <script src =" https://cdnjs.cloudflare.com/ajax/libs/tocbot/4.30.0 /tocbot.min.js" ></script >
43
+ <script src =" https://cdnjs.cloudflare.com/ajax/libs/tocbot/4.32.2 /tocbot.min.js" ></script >
44
44
```
45
45
46
46
@@ -49,7 +49,7 @@ Include the script at the bottom of the page before the closing body tag.
49
49
CSS is used for expanding & collapsing groupings and some basic styling.
50
50
51
51
``` html
52
- <link rel =" stylesheet" href =" https://cdnjs.cloudflare.com/ajax/libs/tocbot/4.30.0 /tocbot.css" >
52
+ <link rel =" stylesheet" href =" https://cdnjs.cloudflare.com/ajax/libs/tocbot/4.32.2 /tocbot.css" >
53
53
```
54
54
55
55
OR
Original file line number Diff line number Diff line change 70
70
"next-build" : " ./node_modules/.bin/next build" ,
71
71
"next-export" : " ./node_modules/.bin/next export" ,
72
72
"next-start" : " ./node_modules/.bin/next start" ,
73
+ "update-readme-version" : " node ./scripts/update-readme-version.js" ,
73
74
"v-prerelease" : " npm version prerelease && git push --tags && npm publish && git push" ,
74
75
"v-patch" : " npm version patch && git push --tags && npm publish && git push" ,
75
76
"v-minor" : " npm version minor && git push --tags && npm publish && git push" ,
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ import * as fs from 'fs';
2
2
import pkg from '../package.json' with { type : 'json' } ;
3
3
4
4
const readmePath = 'README.md' ;
5
- const thisScriptPath = 'scripts/update-readme-versions .js' ;
5
+ const thisScriptPath = 'scripts/update-readme-version .js' ;
6
6
7
- const LAST_VERSION = '4.30.0 '
7
+ const LAST_VERSION = '4.32.2 '
8
8
const NEW_VERSION = pkg . version
9
9
10
10
function replaceOldVersionWithNew ( ) {
You can’t perform that action at this time.
0 commit comments