Skip to content
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

Docs: remove docs script (fixes #14288) #14971

Merged
merged 3 commits into from Aug 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 0 additions & 6 deletions Makefile.js
Expand Up @@ -582,12 +582,6 @@ target.test = function() {
target.checkLicenses();
};

target.docs = function() {
echo("Generating documentation");
exec(`${getBinFile("jsdoc")} -d jsdoc lib`);
echo("Documentation has been output to /jsdoc");
};

target.gensite = function(prereleaseVersion) {
echo("Generating eslint.org");

Expand Down
8 changes: 2 additions & 6 deletions docs/developer-guide/development-environment.md
Expand Up @@ -81,12 +81,8 @@ Be sure to run this after making changes and before sending a pull request with

#### npm run lint

Runs just the JavaScript and JSON linting on the repository
Runs just the JavaScript and JSON linting on the repository.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it's not related to the PR, but atm it also linting markdown files. 😄


#### npm run webpack

Generates `build/eslint.js`, a version of ESLint for use in the browser

#### npm run docs

Generates JSDoc documentation and places it into `/jsdoc`.
Generates `build/eslint.js`, a version of ESLint for use in the browser.
1 change: 0 additions & 1 deletion package.json
Expand Up @@ -23,7 +23,6 @@
"generate-betarelease": "node Makefile.js generatePrerelease -- beta",
"generate-rcrelease": "node Makefile.js generatePrerelease -- rc",
"publish-release": "node Makefile.js publishRelease",
"docs": "node Makefile.js docs",
"gensite": "node Makefile.js gensite",
"webpack": "node Makefile.js webpack",
"perf": "node Makefile.js perf"
Expand Down