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

Documentation: Adding the packages READMEs to the handbook #7632

Merged
merged 4 commits into from
Jun 29, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: Use packageName instead of pkg
  • Loading branch information
tofumatt committed Jun 29, 2018
commit 41d33d64e672ed4ca640f5018ab84d67f909bf86
8 changes: 4 additions & 4 deletions docs/tool/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@ module.exports = {
dataDocsOutput: path.resolve( __dirname, '../data' ),

packages: {
...npmReadyPackages.reduce( ( memo, pkg ) => {
memo[ pkg ] = { isNpmReady: true };
...npmReadyPackages.reduce( ( memo, packageName ) => {
memo[ packageName ] = { isNpmReady: true };
return memo;
}, {} ),
...gutenbergPackages.reduce( ( memo, pkg ) => {
memo[ pkg ] = { isNpmReady: false };
...gutenbergPackages.reduce( ( memo, packageName ) => {
memo[ packageName ] = { isNpmReady: false };
return memo;
}, {} ),
},
Expand Down