tubone24 / blog

tubone's Blog made by Gatsby.js and Netlify
https://blog.tubone-project24.xyz/
Other
6 stars 2 forks source link

Update dependency core-js to v3.33.0 #1372

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
core-js 3.30.1 -> 3.33.0 age adoption passing confidence

Release Notes

zloirock/core-js (core-js) ### [`v3.33.0`](https://togithub.com/zloirock/core-js/blob/HEAD/CHANGELOG.md#3330---20231002) [Compare Source](https://togithub.com/zloirock/core-js/compare/v3.32.2...v3.33.0) - Re-introduced [`RegExp` escaping stage 2 proposal](https://togithub.com/tc39/proposal-regex-escaping), September 2023 TC39 meeting: - Added `RegExp.escape` method with the new set of symbols for escaping - Some years ago, it was presented in `core-js`, but it was removed after rejecting the old version of this proposal - Added [`ArrayBuffer.prototype.{ transfer, transferToFixedLength }`](https://togithub.com/tc39/proposal-arraybuffer-transfer) and support transferring of `ArrayBuffer`s via [`structuredClone`](https://html.spec.whatwg.org/multipage/structured-data.html#dom-structuredclone) to engines with `MessageChannel` - Optimized [`Math.f16round`](https://togithub.com/tc39/proposal-float16array) polyfill - Fixed [some conversion cases](https://togithub.com/petamoriken/float16/issues/1046) of [`Math.f16round` and `DataView.prototype.{ getFloat16, setFloat16 }`](https://togithub.com/tc39/proposal-float16array) - Fully forced polyfilling of [the TC39 `Observable` proposal](https://togithub.com/tc39/proposal-observable) because of incompatibility with [the new WHATWG `Observable` proposal](https://togithub.com/WICG/observable) - Added an extra workaround of errors with exotic environment objects in `Symbol` polyfill, [#​1289](https://togithub.com/zloirock/core-js/issues/1289) - Some minor fixes and stylistic changes - Compat data improvements: - V8 unshipped [`Iterator` helpers](https://togithub.com/tc39/proposal-iterator-helpers) because of [some Web compatibility issues](https://togithub.com/tc39/proposal-iterator-helpers/issues/286) - [`Promise.withResolvers`](https://togithub.com/tc39/proposal-promise-with-resolvers) marked as [supported from V8 ~ Chrome 119](https://chromestatus.com/feature/5810984110784512) - [`Array` grouping proposal](https://togithub.com/tc39/proposal-array-grouping) features marked as [supported from FF119](https://bugzilla.mozilla.org/show_bug.cgi?id=1792650#c9) - [`value` argument of `URLSearchParams.prototype.{ has, delete }`](https://url.spec.whatwg.org/#dom-urlsearchparams-delete) marked as properly supported from V8 ~ Chrome 118 - [`URL.canParse`](https://url.spec.whatwg.org/#dom-url-canparse) and [`URLSearchParams.prototype.size`](https://url.spec.whatwg.org/#dom-urlsearchparams-size) marked as [supported from Bun 1.0.2](https://togithub.com/oven-sh/bun/releases/tag/bun-v1.0.2) - Added Deno 1.37 compat data mapping - Added Electron 28 compat data mapping - Added Opera Android 78 compat data mapping ### [`v3.32.2`](https://togithub.com/zloirock/core-js/blob/HEAD/CHANGELOG.md#3322---20230907) [Compare Source](https://togithub.com/zloirock/core-js/compare/v3.32.1...v3.32.2) - Fixed `structuredClone` feature detection `core-js@3.32.1` bug, [#​1288](https://togithub.com/zloirock/core-js/issues/1288) - Added a workaround of old WebKit + `eval` bug, [#​1287](https://togithub.com/zloirock/core-js/pull/1287) - Compat data improvements: - Added Samsung Internet 23 compat data mapping - Added Quest Browser 29 compat data mapping ### [`v3.32.1`](https://togithub.com/zloirock/core-js/blob/HEAD/CHANGELOG.md#3321---20230819) [Compare Source](https://togithub.com/zloirock/core-js/compare/v3.32.0...v3.32.1) - Fixed some cases of IEEE754 rounding, [#​1279](https://togithub.com/zloirock/core-js/issues/1279), thanks [**@​petamoriken**](https://togithub.com/petamoriken) - Prevented injection `process` polyfill to `core-js` via some bundlers or `esm.sh`, [#​1277](https://togithub.com/zloirock/core-js/issues/1277) - Some minor fixes and stylistic changes - Compat data improvements: - [`Promise.withResolvers`](https://togithub.com/tc39/proposal-promise-with-resolvers) marked as supported [from Bun 0.7.1](https://bun.sh/blog/bun-v0.7.1#bun-ismainthread-and-promise-withresolvers) - Added Opera Android 77 compat data mapping - Updated Electron 27 compat data mapping ### [`v3.32.0`](https://togithub.com/zloirock/core-js/blob/HEAD/CHANGELOG.md#3320---20230728) [Compare Source](https://togithub.com/zloirock/core-js/compare/v3.31.1...v3.32.0) - [`Array` grouping proposal](https://togithub.com/tc39/proposal-array-grouping), July 2023 TC39 meeting updates: - [Moved back to stage 3](https://togithub.com/tc39/proposal-array-grouping/issues/54) - Added `/actual/` namespaces entries, unconditional forced replacement changed to feature detection - [`Promise.withResolvers` proposal](https://togithub.com/tc39/proposal-promise-with-resolvers), July 2023 TC39 meeting updates: - [Moved to stage 3](https://togithub.com/tc39/proposal-promise-with-resolvers/pull/18) - Added `/actual/` namespaces entries, unconditional forced replacement changed to feature detection - [`Set` methods stage 3 proposal](https://togithub.com/tc39/proposal-set-methods), July 2023 TC39 meeting updates: - Throw on negative `Set` sizes, [proposal-set-methods/88](https://togithub.com/tc39/proposal-set-methods/pull/88) - Removed `IsCallable` check in `GetKeysIterator`, [proposal-set-methods/101](https://togithub.com/tc39/proposal-set-methods/pull/101) - [Iterator Helpers stage 3 proposal](https://togithub.com/tc39/proposal-iterator-helpers): - Avoid creating observable `String` wrapper objects, July 2023 TC39 meeting update, [proposal-iterator-helpers/281](https://togithub.com/tc39/proposal-iterator-helpers/pull/281) - `Iterator` is not constructible from the active function object (works as an abstract class) - Async explicit resource management: - Moved back into [the initial proposal](https://togithub.com/tc39/proposal-explicit-resource-management) -> moved to stage 3, [proposal-explicit-resource-management/154](https://togithub.com/tc39/proposal-explicit-resource-management/pull/154) - Added `/actual/` namespace entries, unconditional forced replacement changed to feature detection - Ignore return value of `[@@​dispose]()` method when hint is `async-dispose`, [proposal-explicit-resource-management/180](https://togithub.com/tc39/proposal-explicit-resource-management/pull/180) - Added ticks for empty resources, [proposal-explicit-resource-management/163](https://togithub.com/tc39/proposal-explicit-resource-management/pull/163) - Added some methods from [`Float16Array` stage 3 proposal](https://togithub.com/tc39/proposal-float16array): - There are some reason why I don't want to add `Float16Array` right now, however, make sense to add some methods from this proposal. - Methods: - `Math.f16round` - `DataView.prototype.getFloat16` - `DataView.prototype.setFloat16` - Added [`DataView` get / set `Uint8Clamped` methods stage 1 proposal](https://togithub.com/tc39/proposal-dataview-get-set-uint8clamped): - Methods: - `DataView.prototype.getUint8Clamped` - `DataView.prototype.setUint8Clamped` - Used strict mode in some missed cases, [#​1269](https://togithub.com/zloirock/core-js/issues/1269) - Fixed [a Chromium 117 bug](https://bugs.chromium.org/p/v8/issues/detail?id=14222) in `value` argument of `URLSearchParams.prototype.{ has, delete }` - Fixed early WebKit ~ Safari 17.0 beta `Set` methods implementation by the actual spec - Fixed incorrect `Symbol.{ dispose, asyncDispose }` descriptors from [NodeJS 20.4](https://togithub.com/nodejs/node/issues/48699) / transpilers helpers / userland code - Fixed forced polyfilling of some iterator helpers that should return wrapped iterator in the pure version - Fixed and exposed [`AsyncIteratorPrototype` `core-js/configurator` option](https://togithub.com/zloirock/core-js#asynciterator-helpers), [#​1268](https://togithub.com/zloirock/core-js/issues/1268) - Compat data improvements: - Sync [`Iterator` helpers proposal](https://togithub.com/tc39/proposal-iterator-helpers) features marked as [supported](https://chromestatus.com/feature/5102502917177344) from V8 ~ Chrome 117 - [`Array` grouping proposal](https://togithub.com/tc39/proposal-array-grouping) features marked as [supported](https://chromestatus.com/feature/5714791975878656) from V8 ~ Chrome 117 - Mark `Symbol.{ dispose, asyncDispose }` as supported from NodeJS 20.5.0 (as mentioned above, NodeJS 20.4.0 add it, but [with incorrect descriptors](https://togithub.com/nodejs/node/issues/48699)) - Added Electron 27 compat data mapping ### [`v3.31.1`](https://togithub.com/zloirock/core-js/blob/HEAD/CHANGELOG.md#3311---20230706) [Compare Source](https://togithub.com/zloirock/core-js/compare/v3.31.0...v3.31.1) - Fixed a `structuredClone` bug with cloning views of transferred buffers, [#​1265](https://togithub.com/zloirock/core-js/issues/1265) - Fixed the order of arguments validation in `DataView` methods - Allowed cloning of [`Float16Array`](https://togithub.com/tc39/proposal-float16array) in `structuredClone` - Compat data improvements: - [`Set` methods proposal](https://togithub.com/tc39/proposal-set-methods) marked as [supported from Safari 17.0](https://developer.apple.com/documentation/safari-release-notes/safari-17-release-notes#JavaScript) - New `URL` features: [`URL.canParse`](https://url.spec.whatwg.org/#dom-url-canparse), [`URLSearchParams.prototype.size`](https://url.spec.whatwg.org/#dom-urlsearchparams-size) and [`value` argument of `URLSearchParams.prototype.{ has, delete }`](https://url.spec.whatwg.org/#dom-urlsearchparams-delete) marked as [supported from Safari 17.0](https://developer.apple.com/documentation/safari-release-notes/safari-17-release-notes#Web-API) - `value` argument of `URLSearchParams.prototype.{ has, delete }` marked as supported from [Deno 1.35](https://togithub.com/denoland/deno/pull/19654) - `AggregateError` and well-formed `JSON.stringify` marked as [supported React Native 0.72 Hermes](https://reactnative.dev/blog/2023/06/21/0.72-metro-package-exports-symlinks#more-ecmascript-support-in-hermes) - Added Deno 1.35 compat data mapping - Added Quest Browser 28 compat data mapping - Added missing NodeJS 12.16-12.22 compat data mapping - Updated Opera Android 76 compat data mapping ### [`v3.31.0`](https://togithub.com/zloirock/core-js/blob/HEAD/CHANGELOG.md#3310---20230612) [Compare Source](https://togithub.com/zloirock/core-js/compare/v3.30.2...v3.31.0) - [Well-formed unicode strings proposal](https://togithub.com/tc39/proposal-is-usv-string): - Methods: - `String.prototype.isWellFormed` method - `String.prototype.toWellFormed` method - Moved to stable ES, [May 2023 TC39 meeting](https://togithub.com/tc39/notes/blob/main/meetings/2023-05/may-15.md#well-formed-unicode-strings-for-stage-4) - Added `es.` namespace modules, `/es/` and `/stable/` namespaces entries - [`Array` grouping proposal](https://togithub.com/tc39/proposal-array-grouping), [May 2023 TC39 meeting updates](https://togithub.com/tc39/notes/blob/main/meetings/2023-05/may-16.md#arrayprototypegroup-rename-for-web-compatibility): - Because of the [web compat issue](https://togithub.com/tc39/proposal-array-grouping/issues/44), [moved from prototype to static methods](https://togithub.com/tc39/proposal-array-grouping/pull/47). Added: - `Object.groupBy` method - `Map.groupBy` method (with the actual semantic - with a minor difference it was present [in the collections methods stage 1 proposal](https://togithub.com/tc39/proposal-collection-methods)) - Demoted to stage 2 - [Decorator Metadata proposal](https://togithub.com/tc39/proposal-decorator-metadata), [May 2023 TC39 meeting updates](https://togithub.com/tc39/notes/blob/main/meetings/2023-05/may-16.md#decorator-metadata-for-stage-3): - Moved to stage 3 - Added `Function.prototype[Symbol.metadata]` (`=== null`) - Added `/actual/` entries - [Iterator Helpers stage 3 proposal](https://togithub.com/tc39/proposal-iterator-helpers): - Changed `Symbol.iterator` fallback from callable check to `undefined` / `null` check, [May 2023 TC39 meeting](https://togithub.com/tc39/notes/blob/main/meetings/2023-05/may-16.md#iterator-helpers-should-symboliterator-fallback-be-a-callable-check-or-an-undefinednull-check), [proposal-iterator-helpers/272](https://togithub.com/tc39/proposal-iterator-helpers/pull/272) - Removed `IsCallable` check on `NextMethod`, deferring errors to `Call` site, [May 2023 TC39 meeting](https://togithub.com/tc39/notes/blob/main/meetings/2023-05/may-16.md#iterator-helpers-should-malformed-iterators-fail-early-or-fail-only-when-iterated), [proposal-iterator-helpers/274](https://togithub.com/tc39/proposal-iterator-helpers/pull/274) - Added [`Promise.withResolvers` stage 2 proposal](https://togithub.com/tc39/proposal-promise-with-resolvers): - `Promise.withResolvers` method - [`Symbol` predicates stage 2 proposal](https://togithub.com/tc39/proposal-symbol-predicates): - The methods renamed to end with `Symbol`, [May 2023 TC39 meeting](https://togithub.com/tc39/notes/blob/main/meetings/2023-05/may-15.md#symbol-predicates): - `Symbol.isRegistered` -> `Symbol.isRegisteredSymbol` method - `Symbol.isWellKnown` -> `Symbol.isWellKnownSymbol` method - Added `value` argument of `URLSearchParams.prototype.{ has, delete }`, [url/735](https://togithub.com/whatwg/url/pull/735) - Fixed some cases of increasing buffer size in `ArrayBuffer.prototype.{ transfer, transferToFixedLength }` polyfills - Fixed awaiting async `AsyncDisposableStack.prototype.adopt` callback, [#​1258](https://togithub.com/zloirock/core-js/issues/1258) - Fixed `URLSearchParams#size` in ES3 engines (IE8-) - Added a workaround in `Object.{ entries, values }` for some IE versions bug with invisible integer keys on `null`-prototype objects - Added TypeScript definitions to `core-js-compat`, [#​1235](https://togithub.com/zloirock/core-js/issues/1235), thanks [**@​susnux**](https://togithub.com/susnux) - Compat data improvements: - [`Set.prototype.difference`](https://togithub.com/tc39/proposal-set-methods) that was missed in Bun because of [a bug](https://togithub.com/oven-sh/bun/issues/2309) added in 0.6.0 - `Array.prototype.{ group, groupToMap }` marked as no longer supported in WebKit runtimes because of the mentioned above web compat issue. For example, it's disabled from Bun 0.6.2 - Methods from the [change `Array` by copy proposal](https://togithub.com/tc39/proposal-change-array-by-copy) marked as supported from FF115 - [`Array.fromAsync`](https://togithub.com/tc39/proposal-array-from-async) marked as supported from FF115 - [`URL.canParse`](https://url.spec.whatwg.org/#dom-url-canparse) marked as supported from FF115 - `value` argument of `URLSearchParams.prototype.{ has, delete }` marked as supported from [NodeJS 20.2.0](https://togithub.com/nodejs/node/pull/47885) and FF115 - Added Deno 1.34 compat data mapping - Added Electron 26 compat data mapping - Added Samsung Internet 22 compat data mapping - Added Opera Android 75 and 76 compat data mapping - Added Quest Browser 27 compat data mapping ### [`v3.30.2`](https://togithub.com/zloirock/core-js/blob/HEAD/CHANGELOG.md#3302---20230507) [Compare Source](https://togithub.com/zloirock/core-js/compare/v3.30.1...v3.30.2) - Added a fix for a NodeJS 20.0.0 [bug](https://togithub.com/nodejs/node/issues/47612) with cloning `File` via `structuredClone` - Added protection from Terser unsafe `String` optimization, [#​1242](https://togithub.com/zloirock/core-js/issues/1242) - Added a workaround for getting proper global object in Figma plugins, [#​1231](https://togithub.com/zloirock/core-js/issues/1231) - Compat data improvements: - Added NodeJS 20.0 compat data mapping - Added Deno 1.33 compat data mapping - [`URL.canParse`](https://url.spec.whatwg.org/#dom-url-canparse) marked as supported (fixed) from [NodeJS 20.1.0](https://togithub.com/nodejs/node/pull/47513) and [Deno 1.33.2](https://togithub.com/denoland/deno/pull/18896)

Configuration

📅 Schedule: Branch creation - "after 11pm,before 6am" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Mend Renovate. View repository job log here.

github-actions[bot] commented 1 year ago

depcheck Result

List up libraries that are defined in dependencies and devDependencies in package.json but not used in your codes.

Unused dependencies - @popperjs/core - @sentry/react - @typescript-eslint/eslint-plugin - babel-loader - babel-polyfill - classnames - flexboxgrid - gatsby-legacy-polyfills - gatsby-plugin-flexsearch - gatsby-plugin-twitter - gatsby-react-router-scroll - html-minifier - intersection-observer - md5 - preact - preact-render-to-string - react-body-classname - react-dom - rimraf - sass - typescript
Unused devdependencies - @babel/core - @babel/preset-typescript - @storybook/addon-a11y - @storybook/addon-controls - @storybook/addon-essentials - @storybook/addon-info - @storybook/addon-interactions - @storybook/addon-knobs - @storybook/addon-links - @storybook/addon-storysource - @storybook/addon-viewport - @storybook/builder-webpack5 - @storybook/manager-webpack5 - @textlint-rule/textlint-rule-no-duplicate-abbr - @types/jest - @types/react-test-renderer - @types/responselike - axe-core - @babel/eslint-parser - babel-plugin-transform-runtime - core-js - cross-env - css-loader - eslint - eslint-config-airbnb - eslint-import-resolver-webpack - eslint-plugin-import - eslint-plugin-jsx-a11y - eslint-plugin-react - gh-pages - husky - identity-obj-proxy - jest - jest-environment-jsdom - markdownlint-cli2 - memlab - netlify-cli - netlify-lambda - nyc - prettier - react-test-renderer - sass-loader - start-server-and-test - stylelint - stylelint-config-recess-order - stylelint-config-recommended-scss - stylelint-config-standard - stylelint-scss - textlint - textlint-filter-rule-allowlist - textlint-filter-rule-comments - textlint-rule-aws-spellcheck - textlint-rule-ja-no-inappropriate-words - textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet - textlint-rule-no-start-duplicated-conjunction - textlint-rule-preset-smarthr - textlint-rule-prh - textlint-rule-terminology - ts-jest - yaml-lint
Missing - colors - /github/workspace/src/styles/_hover.scss - @algolia/transporter - /github/workspace/src/components/SearchBox/index.tsx - @algolia/client-search - /github/workspace/src/components/SearchBox/index.tsx - qs - /github/workspace/scripts/benchmark.js - https - /github/workspace/scripts/uploadScreenShot.ts
coveralls commented 1 year ago

Pull Request Test Coverage Report for Build 6372962396


Totals Coverage Status
Change from base Build 6289570231: 0.0%
Covered Lines: 250
Relevant Lines: 280

💛 - Coveralls
github-actions[bot] commented 1 year ago

Deploy Preview

Deploy path: /home/runner/work/blog/blog/public Functions path: /home/runner/work/blog/blog/functions/src Configuration path: /home/runner/work/blog/blog/netlify.toml Deploying to draft URL...

Logs: https://app.netlify.com/sites/pensive-lamport-5822d2/deploys/64c53c2761f7c97fb230cbaf Website Draft URL: https://64c53c2761f7c97fb230cbaf--pensive-lamport-5822d2.netlify.app

If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

github-actions[bot] commented 1 year ago

Bundle Analyzer URL

https://64c53c2761f7c97fb230cbaf--pensive-lamport-5822d2.netlify.app/webpack-bundle-analyser

github-actions[bot] commented 1 year ago

Memlab leaks report

``` page-load [7.5MB] (baseline) [s1] > action-on-page [8.6MB] (target) [s2] > revert [8.9MB] (final) [s3] ------3 clusters------ --Similar leaks in this run: 1480-- --Retained size of leaked objects: 172.4KB-- [] (synthetic) @1 [9.7MB] --6 (shortcut)---> [Window / https://blog.tubone-project24.xyz] (object) @9845 [150.1KB] --webpackChunkblog (property)---> [Array] (object) @177197 [8.7KB] --push (property)---> [native_bind] (closure) @177031 [128 bytes] --bound_function (internal)---> [r] (closure) @177035 [68 bytes] --context (internal)---> [] (object) @230095 [312 bytes] --previous (internal)---> [] (object) @72113 [60.7KB] --n (variable)---> [Object] (object) @83079 [60.6KB] --449 (element)---> [Object] (object) @83557 [24 bytes] --exports (property)---> [r] (closure) @117485 [2.6KB] --hasData (property)---> [] (closure) @215757 [68 bytes] --context (internal)---> [] (object) @118729 [1.3KB] --e (variable)---> [Object] (object) @118731 [1KB] --2 (element)---> [Object] (object) @356059 [76 bytes] --aaAutocomplete (property)---> [f] (object) @356063 [348 bytes] --$node (property)---> [q] (object) @359325 [188 bytes] --0 (element)---> [Detached HTMLSpanElement] (native) @344517 [648 bytes] --7 (element)---> [Detached HTMLDivElement] (native) @344755 [5.7KB] --7 (element)---> [Detached HTMLDivElement] (native) @343639 [400 bytes] --6 (element)---> [Detached HTMLDivElement] (native) @343703 [400 bytes] --6 (element)---> [Detached HTMLAnchorElement] (native) @344591 [1.9KB] --11 (element)---> [Detached HTMLAnchorElement] (native) @344605 [1.9KB] --11 (element)---> [Detached HTMLAnchorElement] (native) @344619 [1.9KB] --13 (element)---> [Detached InternalNode] (native) @160133568 [496 bytes] --3 (element)---> [Detached InternalNode] (native) @371041984 [288 bytes] --1 (element)---> [Detached InternalNode] (native) @339844448 [288 bytes] --3 (element)---> [Detached Attr] (native) @339845088 [96 bytes] --Similar leaks in this run: 333-- --Retained size of leaked objects: 49.3KB-- [] (synthetic) @1 [9.7MB] --6 (shortcut)---> [Window / https://blog.tubone-project24.xyz] (object) @9845 [150.1KB] --___navigate (property)---> [] (closure) @174999 [68 bytes] --context (internal)---> [] (object) @174283 [496 bytes] --a (variable)---> [Module] (object) @49529 [5.8KB] --get version (property)---> [version] (closure) @71841 [68 bytes] --context (internal)---> [] (object) @72885 [16.6KB] --Qn (variable)---> [y] (object) @450719 [412 bytes] --props (property)---> [Object] (object) @486189 [28 bytes] --children (property)---> [Object] (object) @517587 [296 bytes] --props (property)---> [Object] (object) @517915 [56 bytes] --children (property)---> [Object] (object) @450969 [1.2KB] --__ (property)---> [Object] (object) @470917 [1.1KB] --__ (property)---> [Object] (object) @470933 [940 bytes] --__ (property)---> [Object] (object) @450551 [736 bytes] --__d (property)---> [Detached HTMLDivElement] (native) @343735 [476 bytes] --5 (element)---> [Detached HTMLDivElement] (native) @343723 [400 bytes] --5 (element)---> [Detached HTMLDivElement] (native) @343721 [400 bytes] --6 (element)---> [Detached HTMLDivElement] (native) @344557 [13.2KB] --6 (element)---> [Detached HTMLAnchorElement] (native) @344525 [1.8KB] --11 (element)---> [Detached HTMLAnchorElement] (native) @344531 [1.8KB] --8 (element)---> [Detached HTMLSpanElement] (native) @344527 [400 bytes] --6 (element)---> [Detached InternalNode] (native) @51956800 [240 bytes] --3 (element)---> [Detached InternalNode] (native) @372401472 [96 bytes] --1 (element)---> [Detached InternalNode] (native) @339692768 [96 bytes] --1 (element)---> [Detached Attr] (native) @370831968 [96 bytes] --Similar leaks in this run: 8-- --Retained size of leaked objects: 968 bytes-- [] (synthetic) @1 [9.7MB] --6 (shortcut)---> [Window / https://blog.tubone-project24.xyz] (object) @9845 [150.1KB] --__twttrll (property)---> [Array] (object) @65461 [184 bytes] --push (property)---> [e] (closure) @65463 [68 bytes] --context (internal)---> [] (object) @65447 [240 bytes] --n (variable)---> [Object] (object) @65451 [14.8KB] --92 (element)---> [Object] (object) @288925 [24 bytes] --exports (property)---> [o] (closure) @65613 [68 bytes] --context (internal)---> [] (object) @59079 [6.2KB] --g (variable)---> [Detached Text] (native) @43183 [396 bytes] --3 (element)---> [Detached InternalNode] (native) @372153536 [272 bytes] --1 (element)---> [Detached InternalNode] (native) @159869664 [272 bytes] --1 (element)---> [Detached InternalNode] (native) @159869504 [272 bytes] --1 (element)---> [Detached MutationObserverRegistration] (native) @371876384 [272 bytes] --1 (element)---> [Detached MutationObserver] (native) @372548032 [192 bytes] --1 (element)---> [Detached MutationObserver::Delegate] (native) @372547872 [80 bytes] ```
github-actions[bot] commented 1 year ago

Storybook Preview

Deploy path: /home/runner/work/blog/blog/storybook-static Functions path: /home/runner/work/blog/blog/functions/src Configuration path: /home/runner/work/blog/blog/netlify.toml Deploying to draft URL...

Logs: https://app.netlify.com/sites/blog-storybook/deploys/64c53c7b7331c002f7625dbb Website Draft URL: https://64c53c7b7331c002f7625dbb--blog-storybook.netlify.app

If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

github-actions[bot] commented 1 year ago

Lighthouse Score

Desktop

performance: 76 accessibility: 100 best-practices: 92 seo: 92 pwa: 100

Mobile

performance: 52 accessibility: 100 best-practices: 83 seo: 93 pwa: 100

github-actions[bot] commented 1 year ago

depcheck Result

List up libraries that are defined in dependencies and devDependencies in package.json but not used in your codes.

Unused dependencies - @popperjs/core - @sentry/react - @typescript-eslint/eslint-plugin - babel-loader - babel-polyfill - classnames - flexboxgrid - gatsby-legacy-polyfills - gatsby-plugin-flexsearch - gatsby-plugin-twitter - gatsby-react-router-scroll - html-minifier - intersection-observer - md5 - preact - preact-render-to-string - react-body-classname - react-dom - rimraf - sass - typescript
Unused devdependencies - @babel/core - @babel/preset-typescript - @storybook/addon-a11y - @storybook/addon-controls - @storybook/addon-essentials - @storybook/addon-info - @storybook/addon-interactions - @storybook/addon-knobs - @storybook/addon-links - @storybook/addon-storysource - @storybook/addon-viewport - @storybook/builder-webpack5 - @storybook/manager-webpack5 - @textlint-rule/textlint-rule-no-duplicate-abbr - @types/jest - @types/react-test-renderer - @types/responselike - axe-core - @babel/eslint-parser - babel-plugin-transform-runtime - core-js - cross-env - css-loader - eslint - eslint-config-airbnb - eslint-import-resolver-webpack - eslint-plugin-import - eslint-plugin-jsx-a11y - eslint-plugin-react - gh-pages - husky - identity-obj-proxy - jest - jest-environment-jsdom - markdownlint-cli2 - memlab - netlify-cli - netlify-lambda - nyc - prettier - react-test-renderer - sass-loader - start-server-and-test - stylelint - stylelint-config-recess-order - stylelint-config-recommended-scss - stylelint-config-standard - stylelint-scss - textlint - textlint-filter-rule-allowlist - textlint-filter-rule-comments - textlint-rule-aws-spellcheck - textlint-rule-ja-no-inappropriate-words - textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet - textlint-rule-no-start-duplicated-conjunction - textlint-rule-preset-smarthr - textlint-rule-prh - textlint-rule-terminology - ts-jest - yaml-lint
Missing - colors - /github/workspace/src/styles/_hover.scss - @algolia/transporter - /github/workspace/src/components/SearchBox/index.tsx - @algolia/client-search - /github/workspace/src/components/SearchBox/index.tsx - qs - /github/workspace/scripts/benchmark.js - https - /github/workspace/scripts/uploadScreenShot.ts
github-actions[bot] commented 1 year ago

Memlab leaks report

``` page-load [7.6MB] (baseline) [s1] > action-on-page [8.6MB] (target) [s2] > revert [8.9MB] (final) [s3] ------3 clusters------ --Similar leaks in this run: 1259-- --Retained size of leaked objects: 164.3KB-- [] (synthetic) @1 [9.8MB] --6 (shortcut)---> [Window / https://blog.tubone-project24.xyz] (object) @9845 [60.3KB] --setTimeout (property)---> [] (closure) @244947 [72 bytes] --context (internal)---> [] (object) @187287 [20 bytes] --previous (internal)---> [] (object) @89627 [44.2KB] --n (variable)---> [t] (closure) @97503 [1.2KB] --context (internal)---> [] (object) @183291 [43.9KB] --n (variable)---> [Object] (object) @235461 [43.9KB] --449 (element)---> [Object] (object) @235909 [24 bytes] --exports (property)---> [r] (closure) @111125 [2.6KB] --hasData (property)---> [] (closure) @224399 [68 bytes] --context (internal)---> [] (object) @111551 [1.3KB] --e (variable)---> [Object] (object) @111553 [1KB] --1 (element)---> [Object] (object) @206661 [76 bytes] --aaAutocomplete (property)---> [f] (object) @211547 [348 bytes] --$node (property)---> [q] (object) @210163 [188 bytes] --0 (element)---> [Detached HTMLSpanElement] (native) @42095 [648 bytes] --7 (element)---> [Detached HTMLDivElement] (native) @41529 [304 bytes] --7 (element)---> [Detached HTMLDivElement] (native) @41551 [400 bytes] --7 (element)---> [Detached HTMLElement] (native) @41557 [400 bytes] --8 (element)---> [Detached HTMLElement] (native) @41555 [400 bytes] --5 (element)---> [Detached HTMLDivElement] (native) @41971 [496 bytes] --8 (element)---> [Detached HTMLDivElement] (native) @41973 [496 bytes] --9 (element)---> [Detached HTMLDivElement] (native) @41975 [496 bytes] --5 (element)---> [Detached HTMLDivElement] (native) @41255 [400 bytes] --5 (element)---> [Detached HTMLAnchorElement] (native) @41261 [1.2KB] --9 (element)---> [Detached HTMLDivElement] (native) @41273 [952 bytes] --7 (element)---> [Detached InternalNode] (native) @117560256 [792 bytes] --5 (element)---> [Detached ElementIntersectionObserverData] (native) @387568896 [64 bytes] --Similar leaks in this run: 267-- --Retained size of leaked objects: 49.3KB-- [] (synthetic) @1 [9.8MB] --6 (shortcut)---> [Window / https://blog.tubone-project24.xyz] (object) @9845 [60.3KB] --___replace (property)---> [] (closure) @86011 [68 bytes] --context (internal)---> [] (object) @85191 [496 bytes] --a (variable)---> [Module] (object) @96135 [5.8KB] --get version (property)---> [version] (closure) @228621 [68 bytes] --context (internal)---> [] (object) @97519 [17KB] --Qn (variable)---> [y] (object) @455387 [368 bytes] --props (property)---> [Object] (object) @449939 [28 bytes] --children (property)---> [Object] (object) @449327 [296 bytes] --props (property)---> [Object] (object) @451539 [56 bytes] --children (property)---> [Object] (object) @451541 [1.2KB] --__ (property)---> [Object] (object) @460135 [1.1KB] --__ (property)---> [Object] (object) @460149 [940 bytes] --__ (property)---> [Object] (object) @460163 [736 bytes] --__d (property)---> [Detached HTMLDivElement] (native) @346753 [476 bytes] --5 (element)---> [Detached HTMLDivElement] (native) @346751 [400 bytes] --5 (element)---> [Detached HTMLDivElement] (native) @346749 [400 bytes] --6 (element)---> [Detached HTMLDivElement] (native) @346009 [13.2KB] --6 (element)---> [Detached HTMLAnchorElement] (native) @345975 [1.8KB] --12 (element)---> [Detached InternalNode] (native) @342736992 [528 bytes] --3 (element)---> [Detached InternalNode] (native) @342174176 [384 bytes] --1 (element)---> [Detached InternalNode] (native) @342242432 [384 bytes] --2 (element)---> [Detached Attr] (native) @387565536 [96 bytes] --Similar leaks in this run: 7-- --Retained size of leaked objects: 968 bytes-- [] (synthetic) @1 [9.8MB] --6 (shortcut)---> [Window / https://blog.tubone-project24.xyz] (object) @9845 [60.3KB] --__twttrll (property)---> [Array] (object) @61903 [184 bytes] --push (property)---> [e] (closure) @187151 [68 bytes] --context (internal)---> [] (object) @61883 [240 bytes] --n (variable)---> [Object] (object) @187157 [14.8KB] --93 (element)---> [Object] (object) @185863 [24 bytes] --exports (property)---> [Object] (object) @185865 [3.5KB] --init (property)---> [init] (closure) @238379 [68 bytes] --context (internal)---> [] (object) @238723 [3.1KB] --r (variable)---> [Detached HTMLFormElement] (native) @42191 [1.8KB] --4 (element)---> [Detached HTMLInputElement] (native) @42185 [684 bytes] --8 (element)---> [Detached InternalNode] (native) @301808960 [328 bytes] --1 (element)---> [Detached ShadowRoot] (native) @301809600 [328 bytes] --4 (element)---> [Detached V8ObservableArrayCSSStyleSheet] (native) @301809440 [120 bytes] --2 (element)---> [Detached ObservableArrayExoticObject] (native) @386242496 [32 bytes] ```
github-actions[bot] commented 1 year ago

Deploy Preview

Deploy path: /home/runner/work/blog/blog/public Functions path: /home/runner/work/blog/blog/functions/src Configuration path: /home/runner/work/blog/blog/netlify.toml Deploying to draft URL...

Logs: https://app.netlify.com/sites/pensive-lamport-5822d2/deploys/64c7d2f73fb0c51237a507ea Website Draft URL: https://64c7d2f73fb0c51237a507ea--pensive-lamport-5822d2.netlify.app

If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

github-actions[bot] commented 1 year ago

Bundle Analyzer URL

https://64c7d2f73fb0c51237a507ea--pensive-lamport-5822d2.netlify.app/webpack-bundle-analyser

github-actions[bot] commented 1 year ago

Storybook Preview

Deploy path: /home/runner/work/blog/blog/storybook-static Functions path: /home/runner/work/blog/blog/functions/src Configuration path: /home/runner/work/blog/blog/netlify.toml Deploying to draft URL...

Logs: https://app.netlify.com/sites/blog-storybook/deploys/64c7d366eaeeec145e65acdd Website Draft URL: https://64c7d366eaeeec145e65acdd--blog-storybook.netlify.app

If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

github-actions[bot] commented 1 year ago

Lighthouse Score

Desktop

performance: 76 accessibility: 100 best-practices: 92 seo: 92 pwa: 100

Mobile

performance: 59 accessibility: 100 best-practices: 83 seo: 93 pwa: 100

github-actions[bot] commented 1 year ago

depcheck Result

List up libraries that are defined in dependencies and devDependencies in package.json but not used in your codes.

Unused dependencies - @popperjs/core - @sentry/react - @typescript-eslint/eslint-plugin - babel-loader - babel-polyfill - classnames - flexboxgrid - gatsby-legacy-polyfills - gatsby-plugin-flexsearch - gatsby-plugin-twitter - gatsby-react-router-scroll - html-minifier - intersection-observer - md5 - preact - preact-render-to-string - react-body-classname - react-dom - rimraf - sass - typescript
Unused devdependencies - @babel/core - @babel/preset-typescript - @storybook/addon-a11y - @storybook/addon-controls - @storybook/addon-essentials - @storybook/addon-info - @storybook/addon-interactions - @storybook/addon-knobs - @storybook/addon-links - @storybook/addon-storysource - @storybook/addon-viewport - @storybook/builder-webpack5 - @storybook/manager-webpack5 - @textlint-rule/textlint-rule-no-duplicate-abbr - @types/jest - @types/react-test-renderer - @types/responselike - axe-core - @babel/eslint-parser - babel-plugin-transform-runtime - core-js - cross-env - css-loader - eslint - eslint-config-airbnb - eslint-import-resolver-webpack - eslint-plugin-import - eslint-plugin-jsx-a11y - eslint-plugin-react - gh-pages - husky - identity-obj-proxy - jest - jest-environment-jsdom - markdownlint-cli2 - memlab - netlify-cli - netlify-lambda - nyc - prettier - react-test-renderer - sass-loader - start-server-and-test - stylelint - stylelint-config-recess-order - stylelint-config-recommended-scss - stylelint-config-standard - stylelint-scss - textlint - textlint-filter-rule-allowlist - textlint-filter-rule-comments - textlint-rule-aws-spellcheck - textlint-rule-ja-no-inappropriate-words - textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet - textlint-rule-no-start-duplicated-conjunction - textlint-rule-preset-smarthr - textlint-rule-prh - textlint-rule-terminology - ts-jest - yaml-lint
Missing - colors - /github/workspace/src/styles/_hover.scss - @algolia/transporter - /github/workspace/src/components/SearchBox/index.tsx - @algolia/client-search - /github/workspace/src/components/SearchBox/index.tsx - qs - /github/workspace/scripts/benchmark.js - https - /github/workspace/scripts/uploadScreenShot.ts
github-actions[bot] commented 1 year ago

Memlab leaks report

``` page-load [7.5MB] (baseline) [s1] > action-on-page [9MB] (target) [s2] > revert [9.2MB] (final) [s3] ------3 clusters------ --Similar leaks in this run: 1074-- --Retained size of leaked objects: 131.3KB-- [] (synthetic) @1 [10.1MB] --6 (shortcut)---> [Window / https://blog.tubone-project24.xyz] (object) @9845 [59.5KB] --setInterval (property)---> [] (closure) @237385 [264 bytes] --context (internal)---> [] (object) @237391 [20 bytes] --previous (internal)---> [] (object) @75039 [44.1KB] --n (variable)---> [t] (closure) @195293 [1.2KB] --context (internal)---> [] (object) @247057 [72.2KB] --n (variable)---> [Object] (object) @249745 [72.2KB] --449 (element)---> [Object] (object) @77325 [24 bytes] --exports (property)---> [r] (closure) @77331 [2.6KB] --hasData (property)---> [] (closure) @201891 [68 bytes] --context (internal)---> [] (object) @195261 [1.3KB] --e (variable)---> [Object] (object) @195263 [1KB] --2 (element)---> [Object] (object) @353043 [76 bytes] --aaAutocomplete (property)---> [f] (object) @407403 [348 bytes] --$node (property)---> [q] (object) @407411 [188 bytes] --0 (element)---> [Detached HTMLSpanElement] (native) @345001 [648 bytes] --7 (element)---> [Detached HTMLDivElement] (native) @345293 [5.7KB] --8 (element)---> [Detached HTMLDivElement] (native) @345329 [400 bytes] --6 (element)---> [Detached HTMLHRElement] (native) @345295 [304 bytes] --6 (element)---> [Detached HTMLDivElement] (native) @344183 [400 bytes] --8 (element)---> [Detached HTMLHRElement] (native) @344185 [304 bytes] --6 (element)---> [Detached HTMLDivElement] (native) @344447 [496 bytes] --5 (element)---> [Detached HTMLParagraphElement] (native) @344443 [880 bytes] --8 (element)---> [Detached HTMLAnchorElement] (native) @344433 [1.5KB] --12 (element)---> [Detached HTMLAnchorElement] (native) @344405 [1.5KB] --13 (element)---> [Detached InternalNode] (native) @384392320 [400 bytes] --3 (element)---> [Detached InternalNode] (native) @384391840 [192 bytes] --1 (element)---> [Detached InternalNode] (native) @342774400 [192 bytes] --1 (element)---> [Detached Attr] (native) @383846912 [96 bytes] --Similar leaks in this run: 373-- --Retained size of leaked objects: 49.3KB-- [] (synthetic) @1 [10.1MB] --6 (shortcut)---> [Window / https://blog.tubone-project24.xyz] (object) @9845 [59.5KB] --___push (property)---> [] (closure) @215541 [68 bytes] --context (internal)---> [] (object) @214917 [496 bytes] --a (variable)---> [Module] (object) @78369 [5.8KB] --get version (property)---> [version] (closure) @260359 [68 bytes] --context (internal)---> [] (object) @144201 [17KB] --Qn (variable)---> [y] (object) @454483 [368 bytes] --props (property)---> [Object] (object) @478925 [28 bytes] --children (property)---> [Object] (object) @478927 [296 bytes] --props (property)---> [Object] (object) @481085 [56 bytes] --children (property)---> [Object] (object) @481199 [1.2KB] --__ (property)---> [Object] (object) @502757 [1.1KB] --__ (property)---> [Object] (object) @502767 [940 bytes] --__ (property)---> [Object] (object) @502781 [736 bytes] --__d (property)---> [Detached HTMLDivElement] (native) @345431 [476 bytes] --5 (element)---> [Detached HTMLDivElement] (native) @345429 [400 bytes] --5 (element)---> [Detached HTMLDivElement] (native) @345427 [400 bytes] --5 (element)---> [Detached HTMLDivElement] (native) @345425 [6.8KB] --5 (element)---> [Detached HTMLDivElement] (native) @345423 [6KB] --6 (element)---> [Detached HTMLDivElement] (native) @345415 [4.9KB] --6 (element)---> [Detached HTMLSpanElement] (native) @345397 [576 bytes] --9 (element)---> [Detached InternalNode] (native) @384527392 [240 bytes] --3 (element)---> [Detached InternalNode] (native) @384526912 [96 bytes] --1 (element)---> [Detached InternalNode] (native) @344516384 [96 bytes] --1 (element)---> [Detached Attr] (native) @383844672 [96 bytes] --Similar leaks in this run: 3-- --Retained size of leaked objects: 448 bytes-- [] (synthetic) @1 [10.1MB] --6 (shortcut)---> [Window / https://blog.tubone-project24.xyz] (object) @9845 [59.5KB] --__twttrll (property)---> [Array] (object) @62459 [184 bytes] --push (property)---> [e] (closure) @239431 [68 bytes] --context (internal)---> [] (object) @62439 [240 bytes] --n (variable)---> [Object] (object) @239423 [14.8KB] --93 (element)---> [Object] (object) @303701 [24 bytes] --exports (property)---> [Object] (object) @251969 [3.5KB] --init (property)---> [init] (closure) @252183 [68 bytes] --context (internal)---> [] (object) @315969 [3.1KB] --r (variable)---> [Detached HTMLFormElement] (native) @39785 [1.8KB] --5 (element)---> [Detached HTMLInputElement] (native) @39793 [684 bytes] --8 (element)---> [Detached InternalNode] (native) @384346592 [328 bytes] --1 (element)---> [Detached ShadowRoot] (native) @384346912 [328 bytes] --4 (element)---> [Detached V8ObservableArrayCSSStyleSheet] (native) @384346752 [120 bytes] --2 (element)---> [Detached ObservableArrayExoticObject] (native) @382490016 [32 bytes] ```
github-actions[bot] commented 1 year ago

Deploy Preview

Deploy path: /home/runner/work/blog/blog/public Functions path: /home/runner/work/blog/blog/functions/src Configuration path: /home/runner/work/blog/blog/netlify.toml Deploying to draft URL...

Logs: https://app.netlify.com/sites/pensive-lamport-5822d2/deploys/64ce41b0da73a53a066af0cd Website Draft URL: https://64ce41b0da73a53a066af0cd--pensive-lamport-5822d2.netlify.app

If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

github-actions[bot] commented 1 year ago

Bundle Analyzer URL

https://64ce41b0da73a53a066af0cd--pensive-lamport-5822d2.netlify.app/webpack-bundle-analyser

github-actions[bot] commented 1 year ago

Storybook Preview

Deploy path: /home/runner/work/blog/blog/storybook-static Functions path: /home/runner/work/blog/blog/functions/src Configuration path: /home/runner/work/blog/blog/netlify.toml Deploying to draft URL...

Logs: https://app.netlify.com/sites/blog-storybook/deploys/64ce42b130bde63981e99753 Website Draft URL: https://64ce42b130bde63981e99753--blog-storybook.netlify.app

If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

github-actions[bot] commented 1 year ago

Lighthouse Score

Desktop

performance: 76 accessibility: 100 best-practices: 92 seo: 92 pwa: 100

Mobile

performance: 57.99999999999999 accessibility: 100 best-practices: 83 seo: 93 pwa: 100

github-actions[bot] commented 1 year ago

depcheck Result

List up libraries that are defined in dependencies and devDependencies in package.json but not used in your codes.

Unused dependencies - @popperjs/core - @sentry/react - @typescript-eslint/eslint-plugin - babel-loader - babel-polyfill - classnames - flexboxgrid - gatsby-legacy-polyfills - gatsby-plugin-flexsearch - gatsby-plugin-twitter - gatsby-react-router-scroll - html-minifier - intersection-observer - md5 - preact - preact-render-to-string - react-body-classname - react-dom - rimraf - sass - typescript
Unused devdependencies - @babel/core - @babel/preset-typescript - @storybook/addon-a11y - @storybook/addon-controls - @storybook/addon-essentials - @storybook/addon-info - @storybook/addon-interactions - @storybook/addon-knobs - @storybook/addon-links - @storybook/addon-storysource - @storybook/addon-viewport - @storybook/builder-webpack5 - @storybook/manager-webpack5 - @textlint-rule/textlint-rule-no-duplicate-abbr - @types/jest - @types/react-test-renderer - @types/responselike - axe-core - @babel/eslint-parser - babel-plugin-transform-runtime - core-js - cross-env - css-loader - eslint - eslint-config-airbnb - eslint-import-resolver-webpack - eslint-plugin-import - eslint-plugin-jsx-a11y - eslint-plugin-react - gh-pages - husky - identity-obj-proxy - jest - jest-environment-jsdom - markdownlint-cli2 - memlab - netlify-cli - netlify-lambda - nyc - prettier - react-test-renderer - sass-loader - start-server-and-test - stylelint - stylelint-config-recess-order - stylelint-config-recommended-scss - stylelint-config-standard - stylelint-scss - textlint - textlint-filter-rule-allowlist - textlint-filter-rule-comments - textlint-rule-aws-spellcheck - textlint-rule-ja-no-inappropriate-words - textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet - textlint-rule-no-start-duplicated-conjunction - textlint-rule-preset-smarthr - textlint-rule-prh - textlint-rule-terminology - ts-jest - yaml-lint
Missing - colors - /github/workspace/src/styles/_hover.scss - @algolia/transporter - /github/workspace/src/components/SearchBox/index.tsx - @algolia/client-search - /github/workspace/src/components/SearchBox/index.tsx - qs - /github/workspace/scripts/benchmark.js - https - /github/workspace/scripts/uploadScreenShot.ts
github-actions[bot] commented 1 year ago

Memlab leaks report

``` page-load [7.6MB] (baseline) [s1] > action-on-page [9.1MB] (target) [s2] > revert [9.3MB] (final) [s3] ------3 clusters------ --Similar leaks in this run: 1252-- --Retained size of leaked objects: 148.7KB-- [] (synthetic) @1 [10.2MB] --6 (shortcut)---> [Window / https://blog.tubone-project24.xyz] (object) @9845 [149.9KB] --setInterval (property)---> [] (closure) @176827 [72 bytes] --context (internal)---> [] (object) @176833 [20 bytes] --previous (internal)---> [] (object) @89573 [44.1KB] --n (variable)---> [t] (closure) @174657 [1.2KB] --context (internal)---> [] (object) @231129 [74.7KB] --n (variable)---> [Object] (object) @231135 [74.7KB] --449 (element)---> [Object] (object) @237959 [24 bytes] --exports (property)---> [r] (closure) @237961 [2.6KB] --hasData (property)---> [] (closure) @205271 [68 bytes] --context (internal)---> [] (object) @205267 [1.3KB] --e (variable)---> [Object] (object) @238347 [1KB] --1 (element)---> [Object] (object) @179221 [76 bytes] --aaAutocomplete (property)---> [f] (object) @179223 [348 bytes] --$node (property)---> [q] (object) @321563 [188 bytes] --0 (element)---> [Detached HTMLSpanElement] (native) @41479 [648 bytes] --7 (element)---> [Detached HTMLDivElement] (native) @42717 [304 bytes] --8 (element)---> [Detached HTMLDivElement] (native) @42719 [400 bytes] --6 (element)---> [Detached HTMLHRElement] (native) @42497 [304 bytes] --6 (element)---> [Detached HTMLDivElement] (native) @42499 [400 bytes] --8 (element)---> [Detached HTMLHRElement] (native) @42501 [304 bytes] --6 (element)---> [Detached HTMLDivElement] (native) @42503 [496 bytes] --6 (element)---> [Detached HTMLAnchorElement] (native) @42341 [1.5KB] --11 (element)---> [Detached HTMLAnchorElement] (native) @42343 [1.5KB] --11 (element)---> [Detached HTMLAnchorElement] (native) @42345 [1.5KB] --11 (element)---> [Detached HTMLAnchorElement] (native) @42347 [1.5KB] --13 (element)---> [Detached InternalNode] (native) @346139744 [400 bytes] --4 (element)---> [Detached ElementIntersectionObserverData] (native) @394711520 [64 bytes] --Similar leaks in this run: 317-- --Retained size of leaked objects: 49.3KB-- [] (synthetic) @1 [10.2MB] --6 (shortcut)---> [Window / https://blog.tubone-project24.xyz] (object) @9845 [149.9KB] --___push (property)---> [] (closure) @86173 [68 bytes] --context (internal)---> [] (object) @85357 [496 bytes] --a (variable)---> [Module] (object) @103771 [5.8KB] --get version (property)---> [version] (closure) @240841 [68 bytes] --context (internal)---> [] (object) @131279 [17KB] --Qn (variable)---> [y] (object) @450885 [368 bytes] --props (property)---> [Object] (object) @475597 [28 bytes] --children (property)---> [Object] (object) @511219 [296 bytes] --props (property)---> [Object] (object) @511221 [56 bytes] --children (property)---> [Object] (object) @490775 [1.2KB] --__ (property)---> [Object] (object) @490795 [1.1KB] --__ (property)---> [Object] (object) @490815 [940 bytes] --__ (property)---> [Object] (object) @490837 [736 bytes] --__d (property)---> [Detached HTMLDivElement] (native) @347889 [476 bytes] --5 (element)---> [Detached HTMLDivElement] (native) @347887 [400 bytes] --5 (element)---> [Detached HTMLDivElement] (native) @347883 [400 bytes] --6 (element)---> [Detached HTMLDivElement] (native) @347415 [13.2KB] --8 (element)---> [Detached HTMLElement] (native) @347447 [27.6KB] --5 (element)---> [Detached HTMLDivElement] (native) @347441 [24.8KB] --6 (element)---> [Detached Text] (native) @346555 [176 bytes] --6 (element)---> [Detached HTMLImageElement] (native) @346559 [696 bytes] --7 (element)---> [Detached Text] (native) @346563 [176 bytes] --6 (element)---> [Detached HTMLParagraphElement] (native) @346599 [2.1KB] --8 (element)---> [Detached Text] (native) @346603 [176 bytes] --6 (element)---> [Detached HTMLHeadingElement] (native) @346611 [576 bytes] --8 (element)---> [Detached Text] (native) @346615 [176 bytes] --6 (element)---> [Detached HTMLParagraphElement] (native) @346623 [480 bytes] --8 (element)---> [Detached Text] (native) @346627 [176 bytes] --6 (element)---> [Detached HTMLParagraphElement] (native) @346635 [480 bytes] --8 (element)---> [Detached Text] (native) @346639 [176 bytes] --6 (element)---> [Detached HTMLImageElement] (native) @346643 [696 bytes] --7 (element)---> [Detached Text] (native) @346649 [176 bytes] --6 (element)---> [Detached HTMLParagraphElement] (native) @346659 [480 bytes] --8 (element)---> [Detached Text] (native) @346663 [176 bytes] --6 (element)---> [Detached HTMLHeadingElement] (native) @346673 [576 bytes] --8 (element)---> [Detached Text] (native) @346677 [176 bytes] --6 (element)---> [Detached HTMLDivElement] (native) @346745 [4.6KB] --8 (element)---> [Detached Text] (native) @346749 [176 bytes] --6 (element)---> [Detached HTMLBRElement] (native) @346753 [304 bytes] --6 (element)---> [Detached Text] (native) @346755 [176 bytes] --6 (element)---> [Detached HTMLElement] (native) @346761 [1.5KB] --5 (element)---> [Detached HTMLEmbedElement] (native) @346757 [1.2KB] --7 (element)---> [Detached InternalNode] (native) @160329216 [768 bytes] --4 (element)---> [Detached InternalNode] (native) @160329056 [96 bytes] --1 (element)---> [Detached InternalNode] (native) @394708640 [96 bytes] --1 (element)---> [Detached Attr] (native) @394713120 [96 bytes] --Similar leaks in this run: 7-- --Retained size of leaked objects: 488 bytes-- [] (synthetic) @1 [10.2MB] --6 (shortcut)---> [Window / https://blog.tubone-project24.xyz] (object) @9845 [149.9KB] --__twttrll (property)---> [Array] (object) @62251 [184 bytes] --push (property)---> [e] (closure) @178867 [68 bytes] --context (internal)---> [] (object) @62231 [240 bytes] --n (variable)---> [Object] (object) @178859 [14.8KB] --92 (element)---> [Object] (object) @153703 [24 bytes] --exports (property)---> [o] (closure) @153705 [68 bytes] --context (internal)---> [] (object) @63255 [6.2KB] --g (variable)---> [Detached Text] (native) @43025 [396 bytes] --3 (element)---> [Detached InternalNode] (native) @345994304 [272 bytes] --1 (element)---> [Detached InternalNode] (native) @347359840 [272 bytes] --1 (element)---> [Detached InternalNode] (native) @346981952 [272 bytes] --1 (element)---> [Detached MutationObserverRegistration] (native) @346981792 [272 bytes] --1 (element)---> [Detached MutationObserver] (native) @395600896 [192 bytes] --1 (element)---> [Detached MutationObserver::Delegate] (native) @395600736 [80 bytes] ```
github-actions[bot] commented 1 year ago

Deploy Preview

Deploy path: /home/runner/work/blog/blog/public Functions path: /home/runner/work/blog/blog/functions/src Configuration path: /home/runner/work/blog/blog/netlify.toml Deploying to draft URL...

Logs: https://app.netlify.com/sites/pensive-lamport-5822d2/deploys/64d25f8c921ef223e98e8207 Website Draft URL: https://64d25f8c921ef223e98e8207--pensive-lamport-5822d2.netlify.app

If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

github-actions[bot] commented 1 year ago

Bundle Analyzer URL

https://64d25f8c921ef223e98e8207--pensive-lamport-5822d2.netlify.app/webpack-bundle-analyser

github-actions[bot] commented 1 year ago

Storybook Preview

Deploy path: /home/runner/work/blog/blog/storybook-static Functions path: /home/runner/work/blog/blog/functions/src Configuration path: /home/runner/work/blog/blog/netlify.toml Deploying to draft URL...

Logs: https://app.netlify.com/sites/blog-storybook/deploys/64d260171068c0233663ddd1 Website Draft URL: https://64d260171068c0233663ddd1--blog-storybook.netlify.app

If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

github-actions[bot] commented 1 year ago

Lighthouse Score

Desktop

performance: 77 accessibility: 100 best-practices: 92 seo: 92 pwa: 100

Mobile

performance: 54 accessibility: 100 best-practices: 83 seo: 93 pwa: 100

github-actions[bot] commented 1 year ago

depcheck Result

List up libraries that are defined in dependencies and devDependencies in package.json but not used in your codes.

Unused dependencies - @popperjs/core - @sentry/react - @typescript-eslint/eslint-plugin - babel-loader - babel-polyfill - classnames - flexboxgrid - gatsby-legacy-polyfills - gatsby-plugin-flexsearch - gatsby-plugin-twitter - gatsby-react-router-scroll - html-minifier - intersection-observer - md5 - preact - preact-render-to-string - react-body-classname - react-dom - rimraf - sass - typescript
Unused devdependencies - @babel/core - @babel/preset-typescript - @storybook/addon-a11y - @storybook/addon-controls - @storybook/addon-essentials - @storybook/addon-info - @storybook/addon-interactions - @storybook/addon-knobs - @storybook/addon-links - @storybook/addon-storysource - @storybook/addon-viewport - @storybook/builder-webpack5 - @storybook/manager-webpack5 - @textlint-rule/textlint-rule-no-duplicate-abbr - @types/jest - @types/react-test-renderer - @types/responselike - axe-core - @babel/eslint-parser - babel-plugin-transform-runtime - core-js - cross-env - css-loader - eslint - eslint-config-airbnb - eslint-import-resolver-webpack - eslint-plugin-import - eslint-plugin-jsx-a11y - eslint-plugin-react - gh-pages - husky - identity-obj-proxy - jest - jest-environment-jsdom - markdownlint-cli2 - memlab - netlify-cli - netlify-lambda - nyc - prettier - react-test-renderer - sass-loader - start-server-and-test - stylelint - stylelint-config-recess-order - stylelint-config-recommended-scss - stylelint-config-standard - stylelint-scss - textlint - textlint-filter-rule-allowlist - textlint-filter-rule-comments - textlint-rule-aws-spellcheck - textlint-rule-ja-no-inappropriate-words - textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet - textlint-rule-no-start-duplicated-conjunction - textlint-rule-preset-smarthr - textlint-rule-prh - textlint-rule-terminology - ts-jest - yaml-lint
Missing - colors - /github/workspace/src/styles/_hover.scss - @algolia/transporter - /github/workspace/src/components/SearchBox/index.tsx - @algolia/client-search - /github/workspace/src/components/SearchBox/index.tsx - qs - /github/workspace/scripts/benchmark.js - https - /github/workspace/scripts/uploadScreenShot.ts
github-actions[bot] commented 1 year ago

Memlab leaks report

``` page-load [8.1MB] (baseline) [s1] > action-on-page [9.8MB] (target) [s2] > revert [10.2MB] (final) [s3] ------3 clusters------ --Similar leaks in this run: 1098-- --Retained size of leaked objects: 140.7KB-- [] (synthetic) @1 [11.1MB] --2 (shortcut)---> [Window / https://blog.tubone-project24.xyz] (object) @9831 [74.9KB] --setTimeout (property)---> [] (closure) @59225 [72 bytes] --context (internal)---> [] (object) @316957 [20 bytes] --previous (internal)---> [] (object) @54543 [332.6KB] --n (variable)---> [t] (closure) @55309 [1.2KB] --context (internal)---> [] (object) @248775 [44KB] --n (variable)---> [Object] (object) @136715 [43.9KB] --449 (element)---> [Object] (object) @137103 [24 bytes] --exports (property)---> [r] (closure) @214863 [2.6KB] --hasData (property)---> [] (closure) @214995 [68 bytes] --context (internal)---> [] (object) @215085 [1.3KB] --e (variable)---> [Object] (object) @215059 [1KB] --1 (element)---> [Object] (object) @215061 [76 bytes] --aaAutocomplete (property)---> [f] (object) @289351 [348 bytes] --$node (property)---> [q] (object) @289377 [188 bytes] --0 (element)---> [Detached HTMLSpanElement] (native) @42043 [816 bytes] --7 (element)---> [Detached HTMLDivElement] (native) @43173 [304 bytes] --7 (element)---> [Detached HTMLDivElement] (native) @43201 [400 bytes] --7 (element)---> [Detached HTMLElement] (native) @43211 [400 bytes] --7 (element)---> [Detached HTMLDivElement] (native) @43217 [400 bytes] --8 (element)---> [Detached HTMLDivElement] (native) @43215 [9.4KB] --6 (element)---> [Detached HTMLAnchorElement] (native) @40793 [2.6KB] --11 (element)---> [Detached HTMLAnchorElement] (native) @40791 [2KB] --8 (element)---> [Detached HTMLSpanElement] (native) @40851 [400 bytes] --6 (element)---> [Detached InternalNode] (native) @20045888 [240 bytes] --1 (element)---> [Detached DOMTokenList] (native) @412012864 [56 bytes] --Similar leaks in this run: 333-- --Retained size of leaked objects: 50KB-- [] (synthetic) @1 [11.1MB] --2 (shortcut)---> [Window / https://blog.tubone-project24.xyz] (object) @9831 [74.9KB] --___push (property)---> [] (closure) @59571 [68 bytes] --context (internal)---> [] (object) @52493 [496 bytes] --a (variable)---> [Module] (object) @52497 [5.8KB] --get version (property)---> [version] (closure) @251215 [68 bytes] --context (internal)---> [] (object) @55359 [16.6KB] --Qn (variable)---> [y] (object) @478435 [368 bytes] --props (property)---> [Object] (object) @500145 [28 bytes] --children (property)---> [Object] (object) @529833 [296 bytes] --props (property)---> [Object] (object) @529843 [56 bytes] --children (property)---> [Object] (object) @478333 [1.2KB] --__ (property)---> [Object] (object) @478121 [1.1KB] --__ (property)---> [Object] (object) @478431 [940 bytes] --__ (property)---> [Object] (object) @478385 [736 bytes] --__d (property)---> [Detached HTMLDivElement] (native) @365279 [476 bytes] --5 (element)---> [Detached HTMLDivElement] (native) @365277 [400 bytes] --5 (element)---> [Detached HTMLDivElement] (native) @365275 [400 bytes] --6 (element)---> [Detached HTMLDivElement] (native) @365337 [13.2KB] --5 (element)---> [Detached HTMLAnchorElement] (native) @365345 [2KB] --12 (element)---> [Detached InternalNode] (native) @350559264 [720 bytes] --3 (element)---> [Detached InternalNode] (native) @350672448 [576 bytes] --1 (element)---> [Detached InternalNode] (native) @350672288 [576 bytes] --4 (element)---> [Detached Attr] (native) @412046112 [96 bytes] --Similar leaks in this run: 5-- --Retained size of leaked objects: 656 bytes-- [] (synthetic) @1 [11.1MB] --2 (shortcut)---> [Window / https://blog.tubone-project24.xyz] (object) @9831 [74.9KB] --__twttrll (property)---> [Array] (object) @59487 [184 bytes] --push (property)---> [e] (closure) @138201 [68 bytes] --context (internal)---> [] (object) @137669 [240 bytes] --n (variable)---> [Object] (object) @137649 [14.8KB] --92 (element)---> [Object] (object) @138679 [24 bytes] --exports (property)---> [o] (closure) @137957 [68 bytes] --context (internal)---> [] (object) @120599 [6.2KB] --g (variable)---> [Detached Text] (native) @43673 [396 bytes] --3 (element)---> [Detached InternalNode] (native) @54050592 [272 bytes] --1 (element)---> [Detached InternalNode] (native) @78981600 [272 bytes] --1 (element)---> [Detached InternalNode] (native) @78981440 [272 bytes] --1 (element)---> [Detached MutationObserverRegistration] (native) @410796928 [272 bytes] ```
github-actions[bot] commented 1 year ago

Deploy Preview

Deploy path: /home/runner/work/blog/blog/public Functions path: /home/runner/work/blog/blog/functions/src Configuration path: /home/runner/work/blog/blog/netlify.toml Deploying to draft URL...

Logs: https://app.netlify.com/sites/pensive-lamport-5822d2/deploys/64da35072fce3c446f1942cf Website Draft URL: https://64da35072fce3c446f1942cf--pensive-lamport-5822d2.netlify.app

If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

github-actions[bot] commented 1 year ago

Bundle Analyzer URL

https://64da35072fce3c446f1942cf--pensive-lamport-5822d2.netlify.app/webpack-bundle-analyser

github-actions[bot] commented 1 year ago

Storybook Preview

Deploy path: /home/runner/work/blog/blog/storybook-static Functions path: /home/runner/work/blog/blog/functions/src Configuration path: /home/runner/work/blog/blog/netlify.toml Deploying to draft URL...

Logs: https://app.netlify.com/sites/blog-storybook/deploys/64da35dd763dcc469f2515d1 Website Draft URL: https://64da35dd763dcc469f2515d1--blog-storybook.netlify.app

If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

github-actions[bot] commented 1 year ago

Lighthouse Score

Desktop

performance: 75 accessibility: 100 best-practices: 95 seo: 92 pwa: 100

Mobile

performance: 51 accessibility: 100 best-practices: 91 seo: 93 pwa: 100

github-actions[bot] commented 1 year ago

depcheck Result

List up libraries that are defined in dependencies and devDependencies in package.json but not used in your codes.

Unused dependencies - @popperjs/core - @sentry/react - @typescript-eslint/eslint-plugin - babel-loader - babel-polyfill - classnames - flexboxgrid - gatsby-legacy-polyfills - gatsby-plugin-flexsearch - gatsby-plugin-twitter - gatsby-react-router-scroll - html-minifier - intersection-observer - md5 - preact - preact-render-to-string - react-body-classname - react-dom - rimraf - sass - typescript
Unused devdependencies - @babel/core - @babel/preset-typescript - @storybook/addon-a11y - @storybook/addon-controls - @storybook/addon-essentials - @storybook/addon-info - @storybook/addon-interactions - @storybook/addon-knobs - @storybook/addon-links - @storybook/addon-storysource - @storybook/addon-viewport - @storybook/builder-webpack5 - @storybook/manager-webpack5 - @textlint-rule/textlint-rule-no-duplicate-abbr - @types/jest - @types/react-test-renderer - @types/responselike - axe-core - @babel/eslint-parser - babel-plugin-transform-runtime - core-js - cross-env - css-loader - eslint - eslint-config-airbnb - eslint-import-resolver-webpack - eslint-plugin-import - eslint-plugin-jsx-a11y - eslint-plugin-react - gh-pages - husky - identity-obj-proxy - jest - jest-environment-jsdom - markdownlint-cli2 - memlab - netlify-cli - netlify-lambda - nyc - prettier - react-test-renderer - sass-loader - start-server-and-test - stylelint - stylelint-config-recess-order - stylelint-config-recommended-scss - stylelint-config-standard - stylelint-scss - textlint - textlint-filter-rule-allowlist - textlint-filter-rule-comments - textlint-rule-aws-spellcheck - textlint-rule-ja-no-inappropriate-words - textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet - textlint-rule-no-start-duplicated-conjunction - textlint-rule-preset-smarthr - textlint-rule-prh - textlint-rule-terminology - ts-jest - yaml-lint
Missing - colors - /github/workspace/src/styles/_hover.scss - @algolia/transporter - /github/workspace/src/components/SearchBox/index.tsx - @algolia/client-search - /github/workspace/src/components/SearchBox/index.tsx - qs - /github/workspace/scripts/benchmark.js - https - /github/workspace/scripts/uploadScreenShot.ts
github-actions[bot] commented 1 year ago

Memlab leaks report

``` page-load [7.7MB] (baseline) [s1] > action-on-page [8.6MB] (target) [s2] > revert [8.9MB] (final) [s3] ------3 clusters------ --Similar leaks in this run: 1325-- --Retained size of leaked objects: 170.5KB-- [] (synthetic) @1 [9.7MB] --6 (shortcut)---> [Window / https://blog.tubone-project24.xyz] (object) @9845 [59.2KB] --setInterval (property)---> [] (closure) @248145 [72 bytes] --context (internal)---> [] (object) @55229 [20 bytes] --previous (internal)---> [] (object) @44999 [44.1KB] --n (variable)---> [t] (closure) @64783 [1.2KB] --context (internal)---> [] (object) @60699 [45.3KB] --n (variable)---> [Object] (object) @211711 [45.2KB] --449 (element)---> [Object] (object) @62069 [24 bytes] --exports (property)---> [r] (closure) @62075 [2.6KB] --hasData (property)---> [] (closure) @69717 [68 bytes] --context (internal)---> [] (object) @64749 [1.3KB] --e (variable)---> [Object] (object) @64751 [1KB] --1 (element)---> [Object] (object) @76585 [76 bytes] --aaAutocomplete (property)---> [f] (object) @76591 [348 bytes] --$node (property)---> [q] (object) @230911 [188 bytes] --0 (element)---> [Detached HTMLSpanElement] (native) @41751 [816 bytes] --7 (element)---> [Detached HTMLDivElement] (native) @42859 [304 bytes] --7 (element)---> [Detached HTMLDivElement] (native) @42883 [400 bytes] --7 (element)---> [Detached HTMLElement] (native) @42009 [400 bytes] --8 (element)---> [Detached HTMLElement] (native) @42007 [400 bytes] --6 (element)---> [Detached HTMLDivElement] (native) @42439 [400 bytes] --8 (element)---> [Detached HTMLDivElement] (native) @42437 [496 bytes] --8 (element)---> [Detached HTMLDivElement] (native) @42435 [496 bytes] --8 (element)---> [Detached HTMLDivElement] (native) @42433 [496 bytes] --8 (element)---> [Detached HTMLDivElement] (native) @42431 [496 bytes] --5 (element)---> [Detached HTMLDivElement] (native) @41109 [400 bytes] --6 (element)---> [Detached HTMLDivElement] (native) @41119 [400 bytes] --5 (element)---> [Detached HTMLDivElement] (native) @41153 [400 bytes] --5 (element)---> [Detached HTMLDivElement] (native) @41163 [400 bytes] --8 (element)---> [Detached HTMLAnchorElement] (native) @41165 [1.2KB] --13 (element)---> [Detached InternalNode] (native) @346515232 [304 bytes] --5 (element)---> [Detached InternalNode] (native) @347344000 [56 bytes] --1 (element)---> [Detached NodeList] (native) @305602048 [56 bytes] --Similar leaks in this run: 298-- --Retained size of leaked objects: 50.2KB-- [] (synthetic) @1 [9.7MB] --6 (shortcut)---> [Window / https://blog.tubone-project24.xyz] (object) @9845 [59.2KB] --___navigate (property)---> [] (closure) @248365 [68 bytes] --context (internal)---> [] (object) @54985 [496 bytes] --a (variable)---> [Module] (object) @54989 [5.8KB] --get version (property)---> [version] (closure) @211997 [68 bytes] --context (internal)---> [] (object) @77293 [16.6KB] --Qn (variable)---> [y] (object) @475899 [368 bytes] --props (property)---> [Object] (object) @489911 [28 bytes] --children (property)---> [Object] (object) @484719 [296 bytes] --props (property)---> [Object] (object) @490399 [56 bytes] --children (property)---> [Object] (object) @490401 [1.2KB] --__ (property)---> [Object] (object) @495729 [1.1KB] --__ (property)---> [Object] (object) @495741 [940 bytes] --__ (property)---> [Object] (object) @495771 [736 bytes] --__d (property)---> [Detached HTMLDivElement] (native) @346991 [476 bytes] --5 (element)---> [Detached HTMLDivElement] (native) @346989 [400 bytes] --5 (element)---> [Detached HTMLDivElement] (native) @346981 [400 bytes] --6 (element)---> [Detached HTMLDivElement] (native) @347525 [13.2KB] --8 (element)---> [Detached HTMLElement] (native) @347543 [28.5KB] --5 (element)---> [Detached HTMLDivElement] (native) @347541 [24.8KB] --6 (element)---> [Detached Text] (native) @346795 [176 bytes] --6 (element)---> [Detached HTMLImageElement] (native) @346801 [696 bytes] --7 (element)---> [Detached Text] (native) @346803 [176 bytes] --6 (element)---> [Detached HTMLParagraphElement] (native) @346825 [2.1KB] --8 (element)---> [Detached Text] (native) @346827 [176 bytes] --6 (element)---> [Detached HTMLHeadingElement] (native) @346831 [576 bytes] --8 (element)---> [Detached Text] (native) @346833 [176 bytes] --6 (element)---> [Detached HTMLParagraphElement] (native) @346837 [480 bytes] --8 (element)---> [Detached Text] (native) @346839 [176 bytes] --6 (element)---> [Detached HTMLParagraphElement] (native) @346843 [480 bytes] --8 (element)---> [Detached Text] (native) @346845 [176 bytes] --6 (element)---> [Detached HTMLImageElement] (native) @346847 [696 bytes] --7 (element)---> [Detached Text] (native) @346849 [176 bytes] --6 (element)---> [Detached HTMLParagraphElement] (native) @346853 [480 bytes] --8 (element)---> [Detached Text] (native) @346855 [176 bytes] --6 (element)---> [Detached HTMLHeadingElement] (native) @346859 [576 bytes] --8 (element)---> [Detached Text] (native) @346861 [176 bytes] --6 (element)---> [Detached HTMLDivElement] (native) @346895 [4.6KB] --5 (element)---> [Detached Text] (native) @346893 [176 bytes] --6 (element)---> [Detached HTMLElement] (native) @346891 [880 bytes] --9 (element)---> [Detached Text] (native) @346885 [176 bytes] --8 (element)---> [Detached InternalNode] (native) @44543552 [32 bytes] --1 (element)---> [Detached InternalNode] (native) @304617728 [32 bytes] --1 (element)---> [Detached NodeList] (native) @305649376 [32 bytes] --Similar leaks in this run: 5-- --Retained size of leaked objects: 328 bytes-- [] (synthetic) @1 [9.7MB] --6 (shortcut)---> [Window / https://blog.tubone-project24.xyz] (object) @9845 [59.2KB] --__twttrll (property)---> [Array] (object) @144423 [184 bytes] --push (property)---> [e] (closure) @55973 [68 bytes] --context (internal)---> [] (object) @55979 [240 bytes] --n (variable)---> [Object] (object) @89721 [14.8KB] --93 (element)---> [Object] (object) @55531 [24 bytes] --exports (property)---> [Object] (object) @75443 [3.5KB] --init (property)---> [init] (closure) @73709 [68 bytes] --context (internal)---> [] (object) @53379 [3.1KB] --r (variable)---> [Detached HTMLFormElement] (native) @40183 [1.8KB] --4 (element)---> [Detached HTMLInputElement] (native) @40189 [684 bytes] --8 (element)---> [Detached InternalNode] (native) @51501888 [328 bytes] --1 (element)---> [Detached ShadowRoot] (native) @51496448 [328 bytes] --4 (element)---> [Detached V8ObservableArrayCSSStyleSheet] (native) @51492768 [120 bytes] --2 (element)---> [Detached ObservableArrayExoticObject] (native) @395001312 [32 bytes] ```
github-actions[bot] commented 1 year ago

Deploy Preview

Deploy path: /home/runner/work/blog/blog/public Functions path: /home/runner/work/blog/blog/functions/src Configuration path: /home/runner/work/blog/blog/netlify.toml Deploying to draft URL...

Logs: https://app.netlify.com/sites/pensive-lamport-5822d2/deploys/64dfc0aeb09ce413959040f1 Website Draft URL: https://64dfc0aeb09ce413959040f1--pensive-lamport-5822d2.netlify.app

If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

github-actions[bot] commented 1 year ago

Bundle Analyzer URL

https://64dfc0aeb09ce413959040f1--pensive-lamport-5822d2.netlify.app/webpack-bundle-analyser

github-actions[bot] commented 1 year ago

Storybook Preview

Deploy path: /home/runner/work/blog/blog/storybook-static Functions path: /home/runner/work/blog/blog/functions/src Configuration path: /home/runner/work/blog/blog/netlify.toml Deploying to draft URL...

Logs: https://app.netlify.com/sites/blog-storybook/deploys/64dfc11cb09ce413d7904105 Website Draft URL: https://64dfc11cb09ce413d7904105--blog-storybook.netlify.app

If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

github-actions[bot] commented 1 year ago

Lighthouse Score

Desktop

performance: 75 accessibility: 100 best-practices: 95 seo: 92 pwa: 100

Mobile

performance: 56.99999999999999 accessibility: 100 best-practices: 91 seo: 93 pwa: 100

github-actions[bot] commented 1 year ago

depcheck Result

List up libraries that are defined in dependencies and devDependencies in package.json but not used in your codes.

Unused dependencies - @popperjs/core - @sentry/react - @typescript-eslint/eslint-plugin - babel-loader - babel-polyfill - classnames - flexboxgrid - gatsby-legacy-polyfills - gatsby-plugin-flexsearch - gatsby-plugin-twitter - gatsby-react-router-scroll - html-minifier - intersection-observer - md5 - preact - preact-render-to-string - react-body-classname - react-dom - rimraf - sass - typescript
Unused devdependencies - @babel/core - @babel/preset-typescript - @storybook/addon-a11y - @storybook/addon-controls - @storybook/addon-essentials - @storybook/addon-info - @storybook/addon-interactions - @storybook/addon-knobs - @storybook/addon-links - @storybook/addon-storysource - @storybook/addon-viewport - @storybook/builder-webpack5 - @storybook/manager-webpack5 - @textlint-rule/textlint-rule-no-duplicate-abbr - @types/jest - @types/react-test-renderer - @types/responselike - axe-core - @babel/eslint-parser - babel-plugin-transform-runtime - core-js - cross-env - css-loader - eslint - eslint-config-airbnb - eslint-import-resolver-webpack - eslint-plugin-import - eslint-plugin-jsx-a11y - eslint-plugin-react - gh-pages - husky - identity-obj-proxy - jest - jest-environment-jsdom - markdownlint-cli2 - memlab - netlify-cli - netlify-lambda - nyc - prettier - react-test-renderer - sass-loader - start-server-and-test - stylelint - stylelint-config-recess-order - stylelint-config-recommended-scss - stylelint-config-standard - stylelint-scss - textlint - textlint-filter-rule-allowlist - textlint-filter-rule-comments - textlint-rule-aws-spellcheck - textlint-rule-ja-no-inappropriate-words - textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet - textlint-rule-no-start-duplicated-conjunction - textlint-rule-preset-smarthr - textlint-rule-prh - textlint-rule-terminology - ts-jest - yaml-lint
Missing - colors - /github/workspace/src/styles/_hover.scss - @algolia/transporter - /github/workspace/src/components/SearchBox/index.tsx - @algolia/client-search - /github/workspace/src/components/SearchBox/index.tsx - qs - /github/workspace/scripts/benchmark.js - https - /github/workspace/scripts/uploadScreenShot.ts
github-actions[bot] commented 1 year ago

Memlab leaks report

``` page-load [7.3MB] (baseline) [s1] > action-on-page [8.9MB] (target) [s2] > revert [8.7MB] (final) [s3] ------2 clusters------ --Similar leaks in this run: 1608-- --Retained size of leaked objects: 155.9KB-- [] (synthetic) @1 [9.8MB] --6 (shortcut)---> [Window / https://blog.tubone-project24.xyz] (object) @6161 [62.8KB] --webpackChunkblog (property)---> [Array] (object) @70413 [8.7KB] --push (property)---> [native_bind] (closure) @271683 [136 bytes] --bound_function (internal)---> [r] (closure) @286491 [76 bytes] --context (internal)---> [] (object) @271711 [312 bytes] --previous (internal)---> [] (object) @140075 [43KB] --n (variable)---> [Object] (object) @271709 [42.9KB] --449 (element)---> [Object] (object) @129655 [24 bytes] --exports (property)---> [r] (closure) @129661 [2.6KB] --hasData (property)---> [] (closure) @212373 [76 bytes] --context (internal)---> [] (object) @131169 [1.4KB] --e (variable)---> [Object] (object) @131171 [1KB] --2 (element)---> [Object] (object) @342113 [76 bytes] --aaAutocomplete (property)---> [f] (object) @401745 [348 bytes] --$node (property)---> [q] (object) @406641 [188 bytes] --0 (element)---> [Detached HTMLSpanElement] (native) @320877 [616 bytes] --7 (element)---> [Detached HTMLDivElement] (native) @321377 [5.7KB] --7 (element)---> [Detached HTMLDivElement] (native) @321249 [384 bytes] --6 (element)---> [Detached HTMLDivElement] (native) @321409 [384 bytes] --6 (element)---> [Detached HTMLAnchorElement] (native) @321699 [2.2KB] --11 (element)---> [Detached HTMLAnchorElement] (native) @321525 [2.2KB] --13 (element)---> [Detached InternalNode] (native) @56472 [488 bytes] --1 (element)---> [Detached InternalNode] (native) @56474 [432 bytes] --3 (element)---> [Detached InternalNode] (native) @61984 [264 bytes] --1 (element)---> [Detached InternalNode] (native) @44394 [264 bytes] --3 (element)---> [Detached Attr] (native) @44390 [88 bytes] --Similar leaks in this run: 539-- --Retained size of leaked objects: 48.9KB-- [] (synthetic) @1 [9.8MB] --6 (shortcut)---> [Window / https://blog.tubone-project24.xyz] (object) @6161 [62.8KB] --___replace (property)---> [] (closure) @70705 [76 bytes] --context (internal)---> [] (object) @145497 [724 bytes] --a (variable)---> [Module] (object) @98721 [6.1KB] --get version (property)---> [version] (closure) @272019 [76 bytes] --context (internal)---> [] (object) @116333 [6.2KB] --Qn (variable)---> [y] (object) @422245 [368 bytes] --props (property)---> [Object] (object) @433757 [28 bytes] --children (property)---> [Object] (object) @478769 [296 bytes] --props (property)---> [Object] (object) @489887 [56 bytes] --children (property)---> [Object] (object) @434807 [1.2KB] --__ (property)---> [Object] (object) @434821 [1.1KB] --__ (property)---> [Object] (object) @434841 [940 bytes] --__ (property)---> [Object] (object) @434855 [736 bytes] --__d (property)---> [Detached HTMLDivElement] (native) @321291 [468 bytes] --5 (element)---> [Detached HTMLDivElement] (native) @321289 [384 bytes] --5 (element)---> [Detached HTMLDivElement] (native) @321287 [384 bytes] --6 (element)---> [Detached HTMLDivElement] (native) @320475 [14.1KB] --6 (element)---> [Detached HTMLAnchorElement] (native) @320885 [2KB] --11 (element)---> [Detached HTMLAnchorElement] (native) @320891 [2KB] --11 (element)---> [Detached HTMLAnchorElement] (native) @320897 [2.7KB] --16 (element)---> [Detached InternalNode] (native) @54292 [224 bytes] --1 (element)---> [Detached InternalNode] (native) @63110 [224 bytes] --1 (element)---> [Detached InternalNode] (native) @63112 [224 bytes] --2 (element)---> [Detached EventListener] (native) @61128 [112 bytes] ```
github-actions[bot] commented 1 year ago

Deploy Preview

Deploy path: /home/runner/work/blog/blog/public Functions path: /home/runner/work/blog/blog/functions/src Configuration path: /home/runner/work/blog/blog/netlify.toml Deploying to draft URL...

Logs: https://app.netlify.com/sites/pensive-lamport-5822d2/deploys/64f28a0435b5df25cbd0e143 Website Draft URL: https://64f28a0435b5df25cbd0e143--pensive-lamport-5822d2.netlify.app

If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

github-actions[bot] commented 1 year ago

Bundle Analyzer URL

https://64f28a0435b5df25cbd0e143--pensive-lamport-5822d2.netlify.app/webpack-bundle-analyser

github-actions[bot] commented 1 year ago

Lighthouse Score

Desktop

performance: 75 accessibility: 100 best-practices: 95 seo: 92 pwa: 100

Mobile

performance: 59 accessibility: 100 best-practices: 91 seo: 93 pwa: 100

github-actions[bot] commented 1 year ago

Storybook Preview

Deploy path: /home/runner/work/blog/blog/storybook-static Functions path: /home/runner/work/blog/blog/functions/src Configuration path: /home/runner/work/blog/blog/netlify.toml Deploying to draft URL...

Logs: https://app.netlify.com/sites/blog-storybook/deploys/64f28aa45cc9ab287745aadb Website Draft URL: https://64f28aa45cc9ab287745aadb--blog-storybook.netlify.app

If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

github-actions[bot] commented 1 year ago

depcheck Result

List up libraries that are defined in dependencies and devDependencies in package.json but not used in your codes.

Unused dependencies - @popperjs/core - @sentry/react - @typescript-eslint/eslint-plugin - babel-loader - babel-polyfill - classnames - flexboxgrid - gatsby-legacy-polyfills - gatsby-plugin-flexsearch - gatsby-plugin-twitter - gatsby-react-router-scroll - html-minifier - intersection-observer - md5 - preact - preact-render-to-string - react-body-classname - react-dom - rimraf - sass - typescript
Unused devdependencies - @babel/core - @babel/preset-typescript - @storybook/addon-a11y - @storybook/addon-controls - @storybook/addon-essentials - @storybook/addon-info - @storybook/addon-interactions - @storybook/addon-knobs - @storybook/addon-links - @storybook/addon-storysource - @storybook/addon-viewport - @storybook/builder-webpack5 - @storybook/manager-webpack5 - @textlint-rule/textlint-rule-no-duplicate-abbr - @types/jest - @types/react-test-renderer - @types/responselike - axe-core - @babel/eslint-parser - babel-plugin-transform-runtime - core-js - cross-env - css-loader - eslint - eslint-config-airbnb - eslint-import-resolver-webpack - eslint-plugin-import - eslint-plugin-jsx-a11y - eslint-plugin-react - gh-pages - husky - identity-obj-proxy - jest - jest-environment-jsdom - markdownlint-cli2 - memlab - netlify-cli - netlify-lambda - nyc - prettier - react-test-renderer - sass-loader - start-server-and-test - stylelint - stylelint-config-recess-order - stylelint-config-recommended-scss - stylelint-config-standard - stylelint-scss - textlint - textlint-filter-rule-allowlist - textlint-filter-rule-comments - textlint-rule-aws-spellcheck - textlint-rule-ja-no-inappropriate-words - textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet - textlint-rule-no-start-duplicated-conjunction - textlint-rule-preset-smarthr - textlint-rule-prh - textlint-rule-terminology - ts-jest - yaml-lint
Missing - colors - /github/workspace/src/styles/_hover.scss - @algolia/transporter - /github/workspace/src/components/SearchBox/index.tsx - @algolia/client-search - /github/workspace/src/components/SearchBox/index.tsx - qs - /github/workspace/scripts/benchmark.js - https - /github/workspace/scripts/uploadScreenShot.ts
github-actions[bot] commented 1 year ago

Deploy Preview

Deploy path: /home/runner/work/blog/blog/public Functions path: /home/runner/work/blog/blog/functions/src Configuration path: /home/runner/work/blog/blog/netlify.toml Deploying to draft URL...

Logs: https://app.netlify.com/sites/pensive-lamport-5822d2/deploys/64f9de13ce8bb9009caaba93 Website Draft URL: https://64f9de13ce8bb9009caaba93--pensive-lamport-5822d2.netlify.app

If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

github-actions[bot] commented 1 year ago

Bundle Analyzer URL

https://64f9de13ce8bb9009caaba93--pensive-lamport-5822d2.netlify.app/webpack-bundle-analyser

github-actions[bot] commented 1 year ago

Storybook Preview

Deploy path: /home/runner/work/blog/blog/storybook-static Functions path: /home/runner/work/blog/blog/functions/src Configuration path: /home/runner/work/blog/blog/netlify.toml Deploying to draft URL...

Logs: https://app.netlify.com/sites/blog-storybook/deploys/64f9de7237e4fa0902d12bf3 Website Draft URL: https://64f9de7237e4fa0902d12bf3--blog-storybook.netlify.app

If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag. netlify deploy --prod

github-actions[bot] commented 1 year ago

Memlab leaks report

``` page-load [7.7MB] (baseline) [s1] > action-on-page [9.4MB] (target) [s2] > revert [9.6MB] (final) [s3] ------2 clusters------ --Similar leaks in this run: 1608-- --Retained size of leaked objects: 160.3KB-- [] (synthetic) @1 [10.7MB] --6 (shortcut)---> [Window / https://blog.tubone-project24.xyz] (object) @6159 [79.8KB] --requestAnimationFrame (property)---> [] (closure) @159407 [164 bytes] --context (internal)---> [] (object) @97905 [68 bytes] --previous (internal)---> [] (object) @65967 [34.8KB] --n (variable)---> [t] (closure) @79113 [1.3KB] --context (internal)---> [] (object) @79105 [42.9KB] --n (variable)---> [Object] (object) @79111 [42.7KB] --449 (element)---> [Object] (object) @103037 [24 bytes] --exports (property)---> [r] (closure) @103039 [2.6KB] --hasData (property)---> [] (closure) @51791 [76 bytes] --context (internal)---> [] (object) @51785 [1.4KB] --e (variable)---> [Object] (object) @328225 [1KB] --2 (element)---> [Object] (object) @403389 [76 bytes] --aaAutocomplete (property)---> [f] (object) @371665 [348 bytes] --$node (property)---> [q] (object) @386885 [188 bytes] --0 (element)---> [Detached HTMLSpanElement] (native) @340067 [616 bytes] --7 (element)---> [Detached HTMLDivElement] (native) @340559 [5.7KB] --8 (element)---> [Detached HTMLDivElement] (native) @340393 [384 bytes] --6 (element)---> [Detached HTMLHRElement] (native) @340557 [296 bytes] --6 (element)---> [Detached HTMLDivElement] (native) @340533 [384 bytes] --8 (element)---> [Detached HTMLHRElement] (native) @340531 [296 bytes] --6 (element)---> [Detached HTMLDivElement] (native) @340317 [472 bytes] --6 (element)---> [Detached HTMLAnchorElement] (native) @340521 [1.8KB] --11 (element)---> [Detached HTMLAnchorElement] (native) @340509 [1.8KB] --11 (element)---> [Detached HTMLAnchorElement] (native) @340499 [1.8KB] --11 (element)---> [Detached HTMLAnchorElement] (native) @340269 [1.8KB] --13 (element)---> [Detached InternalNode] (native) @56710 [400 bytes] --1 (element)---> [Detached InternalNode] (native) @74232 [344 bytes] --4 (element)---> [Detached ElementIntersectionObserverData] (native) @38236 [72 bytes] --Similar leaks in this run: 539-- --Retained size of leaked objects: 48.9KB-- [] (synthetic) @1 [10.7MB] --6 (shortcut)---> [Window / https://blog.tubone-project24.xyz] (object) @6159 [79.8KB] --___replace (property)---> [] (closure) @159917 [76 bytes] --context (internal)---> [] (object) @124167 [724 bytes] --a (variable)---> [Module] (object) @79877 [6.1KB] --get version (property)---> [version] (closure) @79527 [76 bytes] --context (internal)---> [] (object) @79189 [6.2KB] --Qn (variable)---> [y] (object) @448869 [420 bytes] --props (property)---> [Object] (object) @452429 [28 bytes] --children (property)---> [Object] (object) @487239 [296 bytes] --props (property)---> [Object] (object) @494987 [56 bytes] --children (property)---> [Object] (object) @460765 [1.2KB] --__ (property)---> [Object] (object) @460779 [1.1KB] --__ (property)---> [Object] (object) @460799 [940 bytes] --__ (property)---> [Object] (object) @460813 [736 bytes] --__d (property)---> [Detached HTMLDivElement] (native) @340491 [468 bytes] --7 (element)---> [Detached InternalNode] (native) @33812 [324 bytes] --1 (element)---> [Detached InternalNode] (native) @33804 [268 bytes] --1 (element)---> [Detached DOMTokenList] (native) @33806 [56 bytes] ```
github-actions[bot] commented 1 year ago

Lighthouse Score

Desktop

performance: 69 accessibility: 100 best-practices: 95 seo: 92 pwa: 100

Mobile

performance: 40 accessibility: 100 best-practices: 91 seo: 93 pwa: 100

github-actions[bot] commented 1 year ago

depcheck Result

List up libraries that are defined in dependencies and devDependencies in package.json but not used in your codes.

Unused dependencies - @popperjs/core - @sentry/react - @typescript-eslint/eslint-plugin - babel-loader - babel-polyfill - classnames - flexboxgrid - gatsby-legacy-polyfills - gatsby-plugin-flexsearch - gatsby-plugin-twitter - gatsby-react-router-scroll - html-minifier - intersection-observer - md5 - preact - preact-render-to-string - react-body-classname - react-dom - rimraf - sass - typescript
Unused devdependencies - @babel/core - @babel/preset-typescript - @storybook/addon-a11y - @storybook/addon-controls - @storybook/addon-essentials - @storybook/addon-info - @storybook/addon-interactions - @storybook/addon-knobs - @storybook/addon-links - @storybook/addon-storysource - @storybook/addon-viewport - @storybook/builder-webpack5 - @storybook/manager-webpack5 - @textlint-rule/textlint-rule-no-duplicate-abbr - @types/jest - @types/react-test-renderer - @types/responselike - axe-core - @babel/eslint-parser - babel-plugin-transform-runtime - core-js - cross-env - css-loader - eslint - eslint-config-airbnb - eslint-import-resolver-webpack - eslint-plugin-import - eslint-plugin-jsx-a11y - eslint-plugin-react - gh-pages - husky - identity-obj-proxy - jest - jest-environment-jsdom - markdownlint-cli2 - memlab - netlify-cli - netlify-lambda - nyc - prettier - react-test-renderer - sass-loader - start-server-and-test - stylelint - stylelint-config-recess-order - stylelint-config-recommended-scss - stylelint-config-standard - stylelint-scss - textlint - textlint-filter-rule-allowlist - textlint-filter-rule-comments - textlint-rule-aws-spellcheck - textlint-rule-ja-no-inappropriate-words - textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet - textlint-rule-no-start-duplicated-conjunction - textlint-rule-preset-smarthr - textlint-rule-prh - textlint-rule-terminology - ts-jest - yaml-lint
Missing - colors - /github/workspace/src/styles/_hover.scss - @algolia/transporter - /github/workspace/src/components/SearchBox/index.tsx - @algolia/client-search - /github/workspace/src/components/SearchBox/index.tsx - qs - /github/workspace/scripts/benchmark.js - https - /github/workspace/scripts/uploadScreenShot.ts