Skip to content

Commit 0f62327

Browse files
committed
🐛 Ensures any non-prod environment still imports the prop-types lib
1 parent f6d34e7 commit 0f62327

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ module.exports = {
7474
* @return {Array} Broccoli vendor tree
7575
*/
7676
treeForVendor(vendorTree) {
77-
if (this.env !== 'development') { return vendorTree; }
77+
if (this.env === 'production') { return vendorTree; }
7878

7979
const tree = [];
8080
if (vendorTree) { tree.push(vendorTree); }

0 commit comments

Comments
 (0)