-
Notifications
You must be signed in to change notification settings - Fork 12k
refactor: fix issues with docs scripts #4893
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
scripts/publish/docs.js
Outdated
.then(() => execute('git add .')) | ||
.then(() => execute(`git commit -m "${version}"`)) | ||
.then(() => execute('git push')); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
misplaced ;
@@ -2,25 +2,16 @@ | |||
'use strict'; | |||
|
|||
/* eslint-disable no-console */ | |||
const fs = require('fs-extra'); | |||
const exec = require('child_process').exec; | |||
const fs = require('fs'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be const fs = require('fs-extra');
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, we don't use anything from fs-extra
anymore.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that I changed outputFile
to writeFile
. Since there's no directories in the wiki they're identical.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🐑
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
No description provided.