File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 2727 - uses : ' actions/checkout@v4'
2828 - uses : ' actions/setup-node@v4'
2929 with :
30- node-version : ' 18 '
30+ node-version : ' 22 '
3131 cache : ' npm'
3232 cache-dependency-path : ' ./package-lock.json'
3333 - run : ' npm clean-install'
Original file line number Diff line number Diff line change @@ -1082,8 +1082,8 @@ async function taskBuildWebsite() {
10821082<html>
10831083<head prefix="og: http://ogp.me/ns#">
10841084 <title>${ pageTitle } </title>
1085+ <!-- Generated from cli.js -->
10851086
1086- <base href="https://www.schemastore.org/" />
10871087 <meta charset="utf-8" />
10881088 <meta name="description" content="${ pageDescription } " />
10891089 <meta name="viewport" content="initial-scale=1.0" />
@@ -1153,6 +1153,12 @@ async function taskBuildWebsite() {
11531153 './src/api/json/catalog.json' ,
11541154 './website/api/json/catalog.json' ,
11551155 )
1156+ // eslint-disable-next-line n/no-unsupported-features/node-builtins
1157+ await fs . cp ( './src/css' , './website/css' , { recursive : true } )
1158+ // eslint-disable-next-line n/no-unsupported-features/node-builtins
1159+ await fs . cp ( './src/img' , './website/img' , { recursive : true } )
1160+ // eslint-disable-next-line n/no-unsupported-features/node-builtins
1161+ await fs . cp ( './src/js' , './website/js' , { recursive : true } )
11561162}
11571163
11581164async function assertFileSystemIsValid ( ) {
You can’t perform that action at this time.
0 commit comments