-
Notifications
You must be signed in to change notification settings - Fork 21
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
Upgrade to use Node.js 20 and bump npm dependencies #2517
Changes from 14 commits
8d6d98b
b8b1129
8dc4a94
ddc2b96
f6997f7
23536a4
cdd9aab
c41ef64
67ef0e2
c4db2a3
6997b6f
47d1f9f
9886344
fccc0cd
b2a3d13
c76514b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
engine-strict=true | ||
|
||
# The legacy-peer-deps option eliminates React versioning conflicts in npm peer | ||
# dependencies between @wordpress/* and @woocommerce/*. It should be removed | ||
# after they don't have versioning conflicts. | ||
legacy-peer-deps=true |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v16 | ||
v20 |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -13,9 +13,9 @@ | |||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
&__placeholder { | ||||||||||||||||||||||||||||
@include placeholder; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
display: inline-block; | ||||||||||||||||||||||||||||
width: 18em; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
@include placeholder; | ||||||||||||||||||||||||||||
Comment on lines
-16
to
+19
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this change necessary? I wonder if placeholder includes There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The change fixes a Sass deprecation warning. The explanation can be found in https://sass-lang.com/documentation/breaking-changes/mixed-decls/
They don't have. Please refer to: google-listings-and-ads/js/src/css/abstracts/_mixins.scss Lines 9 to 21 in fccc0cd
|
||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
* External dependencies | ||
*/ | ||
import { useRef } from '@wordpress/element'; | ||
import { Form } from '@woocommerce/components'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Wondering if it's worth it to import the component just for the docs. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
import { pick, noop } from 'lodash'; | ||
|
||
/** | ||
|
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.
Can you elaborate what do you mean by this?
The JS package
tracking-jsdoc
changes the definition of the@fires
tag.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.
Adjusted the code comment in c76514b. Let me know if it's still not clear enough.
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.
I will just write "Listing our event names to avoid eslint false alarms"
But not a blocker tho.