Skip to content

Commit fefd2e3

Browse files
authoredNov 3, 2021
fix website build (#1807)
* enable website build * use import with node-fetch * log npm version * fix fetch import * debugging contributors * disable esling for scripts, only import vuepress in CI * update build.yml
1 parent 29caf13 commit fefd2e3

File tree

4 files changed

+15
-14
lines changed

4 files changed

+15
-14
lines changed
 

‎.github/workflows/build.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
node-version: ${{ matrix.node-version }}
2323
- run: npm install
2424
- run: git submodule update --init
25-
# - name: update website
26-
# if: ${{ github.event_name == 'push' && matrix.node-version == '14.x' }}
27-
# run: ./scripts/publish-site
28-
# env:
29-
# GH_TOKEN_PUBLIC: ${{ secrets.GH_TOKEN_PUBLIC }}
30-
# GIT_USER_EMAIL: ${{ secrets.GIT_USER_EMAIL }}
31-
# GIT_USER_NAME: ${{ secrets.GIT_USER_NAME }}
25+
- name: update website
26+
if: ${{ github.event_name == 'push' && matrix.node-version == '14.x' }}
27+
run: ./scripts/publish-site
28+
env:
29+
GH_TOKEN_PUBLIC: ${{ secrets.GH_TOKEN_PUBLIC }}
30+
GIT_USER_EMAIL: ${{ secrets.GIT_USER_EMAIL }}
31+
GIT_USER_NAME: ${{ secrets.GIT_USER_NAME }}
3232
- run: npm run build
3333
- run: npm run test-ci
3434
- name: coveralls

‎package.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
".runkit_example.js"
1111
],
1212
"scripts": {
13-
"eslint": "eslint \"lib/**/*.ts\" \"spec/**/*.*s\" scripts --ignore-pattern spec/JSON-Schema-Test-Suite",
13+
"eslint": "eslint \"lib/**/*.ts\" \"spec/**/*.*s\" --ignore-pattern spec/JSON-Schema-Test-Suite",
1414
"prettier:write": "prettier --write \"./**/*.{json,yaml,js,ts}\"",
1515
"prettier:check": "prettier --list-different \"./**/*.{json,yaml,js,ts}\"",
1616
"test-spec": "cross-env TS_NODE_PROJECT=spec/tsconfig.json mocha -r ts-node/register \"spec/**/*.spec.{ts,js}\" -R dot -g \\(.recursiveRef.with.no..recursiveAnchor\\|.dynamicRef.with.no..dynamicAnchor\\).in.the.initial.target.schema.resource -i",
@@ -74,7 +74,6 @@
7474
"@types/require-from-string": "^1.2.0",
7575
"@typescript-eslint/eslint-plugin": "^3.8.0",
7676
"@typescript-eslint/parser": "^3.8.0",
77-
"@vuepress/shared-utils": "^1.8.2",
7877
"ajv-formats": "^2.0.0",
7978
"chai": "^4.0.1",
8079
"cross-env": "^7.0.2",
@@ -100,8 +99,7 @@
10099
"rollup-plugin-terser": "^7.0.2",
101100
"ts-node": "^10.0.0",
102101
"tsify": "^5.0.2",
103-
"typescript": "^4.2.0",
104-
"vuepress": "^1.8.2"
102+
"typescript": "^4.2.0"
105103
},
106104
"collective": {
107105
"type": "opencollective",

‎scripts/get-contributors.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
// https://github.com/sveltejs/svelte/blob/ce3a5791258ec6ecf8c1ea022cb871afe805a45c/site/scripts/get-contributors.js
33

44
const fs = require("fs")
5-
const fetch = require("node-fetch")
65
const Jimp = require("jimp")
76

87
process.chdir(__dirname)
@@ -12,7 +11,11 @@ const {GH_TOKEN_PUBLIC} = process.env
1211

1312
const SIZE = 64
1413

14+
main()
15+
1516
async function main() {
17+
const fetch = (await import("node-fetch")).default
18+
1619
const contributors = []
1720
let page = 1
1821

@@ -53,5 +56,3 @@ async function main() {
5356
`module.exports = ${str}`
5457
)
5558
}
56-
57-
main()

‎scripts/publish-site

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ set -ex
55
echo "About to publish $GITHUB_REF to gh-pages..."
66
rm -rf ../gh-pages
77

8+
npm install vuepress@1
9+
npm install @vuepress/shared-utils@1
810
npm run docs:build
911

1012
git config --global user.name "$GIT_USER_NAME"

0 commit comments

Comments
 (0)
Please sign in to comment.