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

Fix semi broken __docgenInfo integration in addon info #1030

Merged
merged 16 commits into from
May 19, 2017
Merged
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
},
"scripts": {
"bootstrap": "lerna bootstrap",
"postinstall": "lerna bootstrap --hoist",
Copy link
Member

Choose a reason for hiding this comment

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

Because a few reason we don't do this, and instead bootstrap manually.

  1. For some CI tasks bootstrapping is unnecessary, but installing is. Bootstrapping is rather slow.
  2. We do npm install in examples, this will cause the postinstall to re-run, causing a lot of unnecessary delay.
  3. When adding a root dependency for development, bootstrapping is not needed.

Copy link
Member

Choose a reason for hiding this comment

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

Please remove this postinstall hook?

"lint": "eslint .",
"test": "jest",
"test:watch": "npm test -- --watch",
Expand Down