Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ryelle committed Oct 11, 2024
1 parent 04070eb commit 7fa2c18
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function getTimezoneOffset( { offset = 0 } ) {
);
}

export default function ( { date, label, onChange } ) {
export default function( { date, label, onChange } ) {
const settings = getSettings();
const is12HourTime = /a(?!\\)/i.test(
settings.formats.time
Expand Down Expand Up @@ -73,10 +73,10 @@ export default function ( { date, label, onChange } ) {
const _date = new TZDate( newDate, serverTimezone );

// XXX returns the timezone (ISO-8601 w/ Z), e.g. -08:00.
const tz = format( _date, 'XXX' );
const timezone = format( _date, 'XXX' );

// Now create a new date with the correct timezone.
const newDateTZ = new Date( newDate + tz );
const newDateTZ = new Date( newDate + timezone );

// Save value in seconds format for post meta.
const value = format( newDateTZ, 't' );
Expand Down
2 changes: 1 addition & 1 deletion public_html/wp-content/plugins/wc-post-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"@wordpress/components": "19.7.0",
"@wordpress/compose": "5.3.0",
"@wordpress/data": "6.5.0",
"@wordpress/date": "4.5.0",
"@wordpress/date": "4.58.0",
"@wordpress/edit-post": "6.2.0",
"@wordpress/element": "4.3.0",
"@wordpress/eslint-plugin": "11.1.0",
Expand Down
37 changes: 37 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4849,6 +4849,16 @@
moment "^2.22.1"
moment-timezone "^0.5.31"

"@wordpress/[email protected]":
version "4.58.0"
resolved "https://registry.yarnpkg.com/@wordpress/date/-/date-4.58.0.tgz#6803e0bde8e8ccb62ebf57554f9543a14cc4433c"
integrity sha512-yFT7DU0H9W0lsDytMaVMmjho08X1LeBMIQMppxdtKB04Ujx58hVh7gtunOsstUQ7pVg23nE2eLaVfx5JOdjzAw==
dependencies:
"@babel/runtime" "^7.16.0"
"@wordpress/deprecated" "^3.58.0"
moment "^2.29.4"
moment-timezone "^0.5.40"

"@wordpress/dependency-extraction-webpack-plugin@^3.4.1":
version "3.4.1"
resolved "https://registry.npmjs.org/@wordpress/dependency-extraction-webpack-plugin/-/dependency-extraction-webpack-plugin-3.4.1.tgz"
Expand All @@ -4873,6 +4883,14 @@
"@babel/runtime" "^7.16.0"
"@wordpress/hooks" "^3.5.0"

"@wordpress/deprecated@^3.58.0":
version "3.58.0"
resolved "https://registry.yarnpkg.com/@wordpress/deprecated/-/deprecated-3.58.0.tgz#c8b9442167bc20aef4888af4a4d081b4553adb4c"
integrity sha512-knweE2lLEUxWRr6A48sHiO0ww5pPybGe2NVIZVq/y7EaYCMdpy6gYA0ZdVqMKZvtxKKqicJfwigcn+hinsTvUQ==
dependencies:
"@babel/runtime" "^7.16.0"
"@wordpress/hooks" "^3.58.0"

"@wordpress/dom-ready@^3.5.0":
version "3.5.0"
resolved "https://registry.npmjs.org/@wordpress/dom-ready/-/dom-ready-3.5.0.tgz"
Expand Down Expand Up @@ -5072,6 +5090,13 @@
dependencies:
"@babel/runtime" "^7.16.0"

"@wordpress/hooks@^3.58.0":
version "3.58.0"
resolved "https://registry.yarnpkg.com/@wordpress/hooks/-/hooks-3.58.0.tgz#68094f7e7e3f8cbc3ab68a0fe9ac2a9b3cfe55d6"
integrity sha512-9LB0ZHnZRQlORttux9t/xbAskF+dk2ujqzPGsVzc92mSKpQP3K2a5Wy74fUnInguB1vLUNHT6nrNdkVom5qX1Q==
dependencies:
"@babel/runtime" "^7.16.0"

"@wordpress/[email protected]", "@wordpress/html-entities@^3.5.0":
version "3.5.0"
resolved "https://registry.npmjs.org/@wordpress/html-entities/-/html-entities-3.5.0.tgz"
Expand Down Expand Up @@ -11945,11 +11970,23 @@ moment-timezone@^0.5.31:
dependencies:
moment ">= 2.9.0"

moment-timezone@^0.5.40:
version "0.5.46"
resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.46.tgz#a21aa6392b3c6b3ed916cd5e95858a28d893704a"
integrity sha512-ZXm9b36esbe7OmdABqIWJuBBiLLwAjrN7CE+7sYdCCx82Nabt1wHDj8TVseS59QIlfFPbOoiBPm6ca9BioG4hw==
dependencies:
moment "^2.29.4"

"moment@>= 2.9.0", moment@>=1.6.0, moment@^2.22.1:
version "2.29.1"
resolved "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz"
integrity sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==

moment@^2.29.4:
version "2.30.1"
resolved "https://registry.yarnpkg.com/moment/-/moment-2.30.1.tgz#f8c91c07b7a786e30c59926df530b4eac96974ae"
integrity sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==

moo@^0.5.0:
version "0.5.1"
resolved "https://registry.npmjs.org/moo/-/moo-0.5.1.tgz"
Expand Down

0 comments on commit 7fa2c18

Please sign in to comment.