Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 17, 2025

Bumps the production-dependencies group with 25 updates in the / directory:

Package From To
@clack/prompts 0.9.0 0.10.0
@floating-ui/dom 1.6.12 1.6.13
@myriaddreamin/rehype-typst 0.5.0-rc9 0.5.4
flexsearch 0.7.43 0.8.1
globby 14.0.2 14.1.0
hast-util-to-html 9.0.4 9.0.5
hast-util-to-jsx-runtime 2.3.2 2.3.6
lightningcss 1.28.2 1.29.3
mdast-util-find-and-replace 3.0.1 3.0.2
mermaid 11.4.1 11.5.0
pixi.js 8.6.6 8.8.1
preact 10.25.3 10.26.4
preact-render-to-string 6.5.12 6.5.13
rehype-mathjax 6.0.0 7.1.0
rehype-pretty-code 0.14.0 0.14.1
remark-gfm 4.0.0 4.0.1
satori 0.12.0 0.12.1
shiki 1.24.4 3.2.1
ws 8.18.0 8.18.1
@types/ws 8.5.13 8.18.0
@types/node 22.10.2 22.13.10
esbuild 0.24.2 0.25.1
prettier 3.4.2 3.5.3
tsx 4.19.2 4.19.3
typescript 5.7.2 5.8.2

Updates @clack/prompts from 0.9.0 to 0.10.0

Release notes

Sourced from @​clack/prompts's releases.

@​clack/prompts@​0.10.0

Minor Changes

  • 613179d: Adds a new indicator option to spinner, which supports the original "dots" loading animation or a new "timer" loading animation.

    import * as p from "@clack/prompts";
    const spin = p.spinner({ indicator: "timer" });
    spin.start("Loading");
    await sleep(3000);
    spin.stop("Loaded");

  • a38b2bc: Adds stream API which provides the same methods as log, but for iterable (even async) message streams. This is particularly useful for AI responses which are dynamically generated by LLMs.

    import * as p from "@clack/prompts";
    await p.stream.step(
    (async function* () {
    yield* generateLLMResponse(question);
    })()
    );

@​clack/prompts@​0.9.1

Patch Changes

  • 8093f3c: Adds Error support to the validate function
  • 98925e3: Exports the Option type and improves JSDocannotations
  • 1904e57: Replace custom utility for stripping ANSI control sequences with Node's built-in stripVTControlCharacters utility.
  • Updated dependencies [8093f3c]
  • Updated dependencies [e5ba09a]
  • Updated dependencies [8cba8e3]
    • @​clack/core@​0.4.1
Changelog

Sourced from @​clack/prompts's changelog.

0.10.0

Minor Changes

  • 613179d: Adds a new indicator option to spinner, which supports the original "dots" loading animation or a new "timer" loading animation.

    import * as p from "@clack/prompts";
    const spin = p.spinner({ indicator: "timer" });
    spin.start("Loading");
    await sleep(3000);
    spin.stop("Loaded");

  • a38b2bc: Adds stream API which provides the same methods as log, but for iterable (even async) message streams. This is particularly useful for AI responses which are dynamically generated by LLMs.

    import * as p from "@clack/prompts";
    await p.stream.step(
    (async function* () {
    yield* generateLLMResponse(question);
    })()
    );

0.9.1

Patch Changes

  • 8093f3c: Adds Error support to the validate function
  • 98925e3: Exports the Option type and improves JSDocannotations
  • 1904e57: Replace custom utility for stripping ANSI control sequences with Node's built-in stripVTControlCharacters utility.
  • Updated dependencies [8093f3c]
  • Updated dependencies [e5ba09a]
  • Updated dependencies [8cba8e3]
    • @​clack/core@​0.4.1
Commits

Updates @floating-ui/dom from 1.6.12 to 1.6.13

Release notes

Sourced from @​floating-ui/dom's releases.

@​floating-ui/dom@​1.6.13

Patch Changes

  • fix(autoUpdate): work around IntersectionObserver issue that sometimes fails to detect movement of reference element
  • Update dependencies: @floating-ui/utils@0.2.9
Changelog

Sourced from @​floating-ui/dom's changelog.

1.6.13

Patch Changes

  • fix(autoUpdate): work around IntersectionObserver issue that sometimes fails to detect movement of reference element
  • Update dependencies: @floating-ui/utils@0.2.9
Commits
  • b0dfb58 chore: version packages (#3187)
  • 87504f9 style(dom): apply prettier config (#3189)
  • 1fa2c50 chore(eslint): add 'eslint-plugin-prettier', apply 'prettier' rules (#3177)
  • 1d20f84 fix(getContainingBlock): check for shorthand transform CSS properties (transl...
  • 993e823 fix(autoUpdate): work around bug where intersection ratio is 1 but element ac...
  • 48c872c chore(eslint): migrate eslint configuration .eslintrc.js to eslint.config.mjs...
  • See full diff in compare view

Updates @myriaddreamin/rehype-typst from 0.5.0-rc9 to 0.5.4

Updates flexsearch from 0.7.43 to 0.8.1

Release notes

Sourced from flexsearch's releases.

v0.8.0

  • Persistent indexes support for: IndexedDB (Browser), Redis, SQLite, Postgres, MongoDB, Clickhouse
  • Enhanced language customization via the new Encoder class
  • Result Highlighting
  • Query performance achieve results up to 4.5 times faster compared to the previous generation v0.7.x by also improving the quality of results
  • Enhanced support for larger indexes or larger result sets
  • Improved offset and limit processing achieve up to 100 times faster traversal performance through large datasets
  • Support for larger In-Memory index with extended key size (the defaults maximum keystore limit is: 2^24)
  • Greatly enhanced performance of the whole text encoding pipeline
  • Improved indexing of numeric content (Triplets)
  • Intermediate result sets and Resolver
  • Basic Resolver: and, or, xor, not, limit, offset, boost, resolve
  • Improved charset collection
  • New charset preset soundex which further reduces memory consumption by also increasing "fuzziness"
  • Performance gain when polling tasks to the index by using "Event-Loop-Caches"
  • Up to 100 times faster deletion/replacement when not using the additional "fastupdate" register
  • Regex Pre-Compilation (transforms hundreds of regex rules into just a few)
  • Extended support for multiple tags (DocumentIndex)
  • Custom Fields ("Virtual Fields")
  • Custom Filter
  • Custom Score Function
  • Added French language preset (stop-word filter, stemmer)
  • Enhanced Worker Support
  • Export / Import index in chunks
  • Improved Build System + Bundler (Supported: CommonJS, ESM, Global Namespace), also the import of language packs are now supported for Node.js
  • Full covering index.d.ts type definitions
  • Fast-Boot Serialization optimized for Server-Side-Rendering (PHP, Python, Ruby, Rust, Java, Go, Node.js, ...)
Changelog

Sourced from flexsearch's changelog.

Changelog

v0.8.0

  • Persistent indexes support for: IndexedDB (Browser), Redis, SQLite, Postgres, MongoDB, Clickhouse
  • Enhanced language customization via the new Encoder class
  • Result Highlighting
  • Query performance achieve results up to 4.5 times faster compared to the previous generation v0.7.x by also improving the quality of results
  • Enhanced support for larger indexes or larger result sets
  • Improved offset and limit processing achieve up to 100 times faster traversal performance through large datasets
  • Support for larger In-Memory index with extended key size (the defaults maximum keystore limit is: 2^24)
  • Greatly enhanced performance of the whole text encoding pipeline
  • Improved indexing of numeric content (Triplets)
  • Intermediate result sets and Resolver
  • Basic Resolver: and, or, xor, not, limit, offset, boost, resolve
  • Improved charset collection
  • New charset preset soundex which further reduces memory consumption by also increasing "fuzziness"
  • Performance gain when polling tasks to the index by using "Event-Loop-Caches"
  • Up to 100 times faster deletion/replacement when not using the additional "fastupdate" register
  • Regex Pre-Compilation (transforms hundreds of regex rules into just a few)
  • Extended support for multiple tags (DocumentIndex)
  • Custom Fields ("Virtual Fields")
  • Custom Filter
  • Custom Score Function
  • Added French language preset (stop-word filter, stemmer)
  • Enhanced Worker Support
  • Export / Import index in chunks
  • Improved Build System + Bundler (Supported: CommonJS, ESM, Global Namespace), also the import of language packs are now supported for Node.js
  • Full covering index.d.ts type definitions
  • Fast-Boot Serialization optimized for Server-Side-Rendering (PHP, Python, Ruby, Rust, Java, Go, Node.js, ...)

v0.7.0

  • Bidirectional Context (the order of words can now vary, does not increase memory when using bidirectional context)
  • New memory-friendly strategy for indexes (switchable, saves up to 50% of memory for each index, slightly decrease performance)
  • Better scoring calculation (one of the biggest concerns of the old implementation was that the order of arrays processed in the intersection has affected the order of relevance in the final result)
  • Fix resolution (the resolution in the old implementation was not fully stretched through the whole range in some cases)
  • Skip words (optionally, automatically skip words from the context chain which are too short)
  • Hugely improves performance of long queries (up to 450x faster!) and also memory allocation (up to 250x less memory)
  • New fast-update strategy (optionally, hugely improves performance of all updates and removals of indexed contents up to 2850x)
  • Improved auto-balanced cache (keep and expire cache by popularity)
  • Append contents to already existing entries (already indexed documents or contents)
  • New method "contain" to check if an ID was already indexed
  • Access documents directly from internal store (read/write)
  • Suggestions are hugely improved, falls back from context search all the way down to single term match
  • Document descriptor has now array support (optionally adds array entries via the new append under the hood to provide a unique relevance context for each entry)
  • Document storage handler gets improved
  • Results from document index now grouped by field (this is one of the few bigger breaking changes which needs migrations of your old code)
  • Boolean search has a new concept (use in combination of the new result structure)
  • Node.js Worker Threads

... (truncated)

Commits

Updates globby from 14.0.2 to 14.1.0

Release notes

Sourced from globby's releases.

v14.1.0

  • Export isIgnoredByIgnoreFiles and isIgnoredByIgnoreFilesSync functions (#269) cba8941

sindresorhus/globby@v14.0.2...v14.1.0

Commits

Updates hast-util-to-html from 9.0.4 to 9.0.5

Release notes

Sourced from hast-util-to-html's releases.

9.0.5

  • 329625e Update property-information

Full Changelog: syntax-tree/hast-util-to-html@9.0.4...9.0.5

Commits

Updates hast-util-to-jsx-runtime from 2.3.2 to 2.3.6

Release notes

Sourced from hast-util-to-jsx-runtime's releases.

2.3.6

Full Changelog: syntax-tree/hast-util-to-jsx-runtime@2.3.5...2.3.6

2.3.5

  • d25e00a Remove no longer working type hack

Full Changelog: syntax-tree/hast-util-to-jsx-runtime@2.3.4...2.3.5

2.3.4

Types

  • bf5ccaa Fix type error if JSX is not defined

Full Changelog: syntax-tree/hast-util-to-jsx-runtime@2.3.3...2.3.4

2.3.3

  • da03821 Update property-information

Full Changelog: syntax-tree/hast-util-to-jsx-runtime@2.3.2...2.3.3

Commits

Updates lightningcss from 1.28.2 to 1.29.3

Release notes

Sourced from lightningcss's releases.

v1.29.3

v1.29.2

v1.29.0

Added

  • Implement view transitions level 2, including the @view-transition rule, view-transition-class and view-transition-group properties, and class selector features of the view transition pseudo elements. This enables CSS module scoping and better minification when using these features. – #885
  • Support parsing the @font-feature-values rule – #840
  • Add a feature flag to explicitly enable or disable transpiling the light-dark() function – parcel-bundler/lightningcss@3043896

Fixed

Commits

Updates mdast-util-find-and-replace from 3.0.1 to 3.0.2

Release notes

Sourced from mdast-util-find-and-replace's releases.

3.0.2

Types

  • f67eee4 Refactor to use @imports
  • 8ac2d6b Add declaration maps

Full Changelog: syntax-tree/mdast-util-find-and-replace@3.0.1...3.0.2

Commits

Updates mermaid from 11.4.1 to 11.5.0

Release notes

Sourced from mermaid's releases.

mermaid@11.5.0

Minor Changes

  • #6187 7809b5a Thanks @​ashishjain0512! - Flowchart new syntax for node metadata bugs

    • Incorrect label mapping for nodes when using &
    • Syntax error when } with trailing spaces before new line
  • #6136 ec0d9c3 Thanks @​knsv! - Adding support for animation of flowchart edges

  • #6373 05bdf0e Thanks @​ashishjain0512! - Upgrade Requirement and ER diagram to use the common renderer flow

    • Added support for directions
    • Added support for hand drawn look
  • #6371 4d25cab Thanks @​knsv! - The arrowhead color should match the color of the edge. Creates a unique clone of the arrow marker with the appropriate color.

Patch Changes

Commits
  • 41a737f Merge pull request #6374 from mermaid-js/changeset-release/master
  • 0c2e1bc Version Packages
  • f399561 Merge pull request #6373 from mermaid-js/release/11.5.0
  • 05bdf0e Added changeset
  • 292cd83 Fix for multi-line row issue and failsafe for edge style for stroke not present
  • 3848649 Merge develop into release/11.5.0
  • 1341e3d Added support for row odd/even in different themes
  • 1d6a55a Merge pull request #6371 from mermaid-js/6369-mirror-edge-color-on-arrowhead
  • 4d25cab Added changeset
  • f633557 test: Add test for edge marker color rendering
  • Additional commits viewable in compare view

Updates pixi.js from 8.6.6 to 8.8.1

Release notes

Sourced from pixi.js's releases.

v8.8.1

💾 Download

Development Build:

Production Build:

Documentation:

Changed

pixijs/pixijs@v8.8.0...v8.8.1

🐛 Fixed

New Contributors

v8.8.0

💾 Download

Development Build:

Production Build:

Documentation:

Changed

pixijs/pixijs@v8.7.3...v8.8.0

🚨 Behavior Change 🚨

Since 8.0.0 PixiJS has been incorrectly applying gradients and graphics fill textures. Instead of using normalized "local space" coordinates (0–1), gradients were using "global space" values in pixels. This was an unintended change that made working with gradients/texture fills much harder. In this release, we have changed the default behavior back to "local space" to match v7.

For anyone who needs the old behavior, you can change the default options globally or you can control it individually as all APIs now accept a textureSpace property that can be set to "global". For example:

FillGradient.defaultLinearOptions.textureSpace = 'global'
FillGradient.defaultRadialOptions.textureSpace = 'global'
// or individually
new FillGraident(0, 0, 100, 100, 'global')
</tr></table> 

... (truncated)

Commits

Updates preact from 10.25.3 to 10.26.4

Release notes

Sourced from preact's releases.

10.26.4

Fixes

10.26.3

Fixes

Types

Maintenance

10.26.2

This is a hotfix release! If you are encountering bundling issues with regards to unallowed import syntax, this will fix it!

Fixes

Maintenance

10.26.1

Fixes

  • Fixes memory leak when wrapping Fragment is captured by an effect closure (#4680, thanks @​JoviDeCroock)

Optimization

Maintenance

... (truncated)

Commits

Updates preact-render-to-string from 6.5.12 to 6.5.13

Release notes

Sourced from preact-render-to-string's releases.

v6.5.13

Patch Changes

  • #408 8e8e8ac Thanks @​f0x52! - Ensure that the _parent is kept around across multiple suspensions and avoid circular references. In doing so our useId hook should always output unique ids during renderingToString.

  • #409 2afaf31 Thanks @​f0x52! - Ensure the renderToStream types of /stream and /stream-node accept a generic for the props of the passed in VNode

  • #405 0a698f6 Thanks @​f0x52! - renderToPipeableStream: expose errors through onError, no longer emit un-catchable error event on internal stream

Changelog

Sourced from preact-render-to-string's changelog.

6.5.13

Patch Changes

  • #408 8e8e8ac Thanks @​f0x52! - Ensure that the _parent is kept around across multiple suspensions and avoid circular references. In doing so our useId hook should always output unique ids during renderingToString.
  • #409 2afaf31 Thanks @​f0x52! - Ensure the renderToStream types of /stream and /stream-node accept a generic for the props of the passed in VNode
  • #405 0a698f6 Thanks @​f0x52! - renderToPipeableStream: expose errors through onError, no longer emit un-catchable error event on internal stream
Commits
  • b2050f4 Version Packages (#410)
  • 0a698f6 renderToPipeableStream: expose errors through onError, no longer emit un-catc...
  • c819f51 Ensure use id works (#411)
  • 8e8e8ac Use suspense boundary vnode as parent for subtree re-render (#408)
  • 2afaf31 Use generic type for vnode props in renderToReadableStream/renderToPipeableSt...
  • See full diff in compare view

Updates rehype-mathjax from 6.0.0 to 7.1.0

Release notes

Sourced from rehype-mathjax's releases.

rehype-mathjax@7.1.0

  • 7250ec6 Add catching of mathjax exceptions

rehype-mathjax@7.0.0

  • b353e49 Remove dependency on jsdom migrate: this should be a patch, but there could be small differences: do let us know if you see problems
Commits

Updates rehype-pretty-code from 0.14.0 to 0.14.1

Release notes

Sourced from rehype-pretty-code's releases.

rehype-pretty-code@0.14.1

Patch Changes

  • fix: use getSingletonHighlighter to avoid deprecated (since v2) Shiki API
  • Support Shiki 3
Changelog

Sourced from rehype-pretty-code's changelog.

0.14.1

Patch Changes

  • fix: use getSingletonHighlighter to avoid deprecated (since v2) Shiki API
  • Support Shiki 3
Commits
  • eba61cb [ci] release (#256)
  • 37bc9d7 Shiki 3 (#257)
  • c9a7c5e fix: use getSingletonHighlighter (Description has been truncated

    Note
    Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

thehiddenbot and others added 30 commits November 14, 2024 08:25
…up (#1)

Bumps the production-dependencies group with 1 update: [satori](https://github.com/vercel/satori).


Updates `satori` from 0.10.14 to 0.11.3
- [Release notes](https://github.com/vercel/satori/releases)
- [Commits](vercel/satori@0.10.14...0.11.3)

---
updated-dependencies:
- dependency-name: satori
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* PUSH NOTE : - الحُسْنَى بين الجمال والجلال.md

* PUSH NOTE : ) كتب أهل الحديث المطبوعة مرتبة على القرون.md

* PUSH NOTE : = هذه رسالات القرآن.md

* PUSH NOTE : = مقدمة في أصول التفسير.md

* PUSH NOTE : = مفاتح تدبر القرآن والنجاح في الحياة.md

* PUSH NOTE : = معاني الأذكار.md

* PUSH NOTE : = مختصر سيرة النبي صلى الله عليه وسلم وسيرة أصحابه العشرة.md

* PUSH NOTE : = لم يخبرونا بهذا قبل أن نتزوج.md

* PUSH NOTE : = كامل الصورة.md

* PUSH NOTE : = فصول في العقيدة الرسالة الشاميَة.md

* PUSH NOTE : = فصول في أصول التفسير.md

* PUSH NOTE : = غيث الساري من هدايات البخاري.md

* PUSH NOTE : = صريح السنة.md

* PUSH NOTE : = شرح الأرجوزة المفيدة في شرح قواعد العقيدة.md

* PUSH ATTACHMENT : الأسماء والصفات والأخبار.svg

* PUSH NOTE : = ذم قسوة القلب وذكر أسبابها.md

* PUSH NOTE : = تنبيه النائم الغمر على مواسم العمر.md

* PUSH NOTE : = تعظيم العلم.md

* PUSH NOTE : = تطريز كتاب صفة صلاة النبي ﷺ.md

* PUSH NOTE : = تطريز شرح حديث أبي الدرداء.md

* PUSH NOTE : = تذكرة السامع والمتكلم في أدب العالم والمتعلم.md

* PUSH NOTE : = بيان فضل علم السلف على علم الخلف.md

* PUSH NOTE : = بيان إعجاز القرآن.md

* PUSH NOTE : = المنهج العلمي لطلاب العلم الشرعي.md

* PUSH NOTE : = اللمسات الحانية في بيت النبوة.md

* PUSH NOTE : = القواعد المثلى في صفات الله وأسمائه الحسنى.md

* PUSH NOTE : = العلم والحلم.md

* PUSH NOTE : = العقيدة في الله.md

* PUSH NOTE : = العدوان على العربية.md

* PUSH NOTE : = الرجال من المريخ والنساء من الزهرة.md

* PUSH NOTE : = الرباط المقدس.md

* PUSH NOTE : = التحفة العراقية تحقيق ودراسة.md

* PUSH NOTE : = الإسلام على مفترق الطرق.md

* PUSH NOTE : = الأساليب النبوية في التعامل مع أخطاء الناس.md

* PUSH NOTE : = إلى حبيبين.md

* PUSH NOTE : = إغاثة الأمة بكشف الغمة.md

* PUSH NOTE : = أخلاق أهل القرآن.md
* PUSH NOTE : + السواد الأعظم المنسي.md

* PUSH NOTE : ) كتب أهل الحديث المطبوعة مرتبة على القرون.md
* PUSH NOTE : دورة البيت المسلم - م أيمن عبد الرحيم.md

* PUSH NOTE : = صفة الجنة وما أعد الله لأهلها من النعيم.md

* PUSH NOTE : = نور الاقتباس في مشكاة وصية النبي صلى الله عليه وسلم لابن عباس.md
Bumps the production-dependencies group with 2 updates: [@clack/prompts](https://github.com/natemoo-re/clack/tree/HEAD/packages/prompts) and [shiki](https://github.com/shikijs/shiki/tree/HEAD/packages/shiki).


Updates `@clack/prompts` from 0.7.0 to 0.8.1
- [Release notes](https://github.com/natemoo-re/clack/releases)
- [Changelog](https://github.com/bombshell-dev/clack/blob/main/packages/prompts/CHANGELOG.md)
- [Commits](https://github.com/natemoo-re/clack/commits/@clack/prompts@0.8.1/packages/prompts)

Updates `shiki` from 1.22.2 to 1.23.1
- [Release notes](https://github.com/shikijs/shiki/releases)
- [Changelog](https://github.com/shikijs/shiki/blob/main/CHANGELOG.md)
- [Commits](https://github.com/shikijs/shiki/commits/v1.23.1/packages/shiki)

---
updated-dependencies:
- dependency-name: "@clack/prompts"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: shiki
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* PUSH NOTE : = رقائق القرآن.md

* PUSH NOTE : = البناء العقدي للجيل الصاعد.md
* PUSH NOTE : index.md

* PUSH NOTE : فوائد من الاستهداء بالقرآن.md

* PUSH NOTE : = ‫صفة النار.md

* PUSH NOTE : قائمة ملاحظات الكتب.md

* PUSH NOTE : = ورثة الأنبياء شرح حديث أبي الدرداء.md

* PUSH NOTE : = يوم تبلى السرائر.md

* PUSH NOTE : = هذه رسالات القرآن.md

* PUSH NOTE : = نور الاقتباس في مشكاة وصية النبي صلى الله عليه وسلم لابن عباس.md

* PUSH NOTE : = نظام التفاهة.md

* PUSH NOTE : = مواعظ الصحابة.md

* PUSH NOTE : = مقدمة في أصول التفسير.md

* PUSH NOTE : = مفاتح تدبر القرآن والنجاح في الحياة.md

* PUSH NOTE : = معاني الأذكار.md

* PUSH NOTE : = مسلكيات.md

* PUSH NOTE : = مرافئ السكن.md

* PUSH NOTE : = محاسن الإسلام نظرات منهجية.md

* PUSH NOTE : = مختصر سيرة النبي صلى الله عليه وسلم وسيرة أصحابه العشرة.md

* PUSH NOTE : = مختصر زاد المعاد في هدى خير العباد.md

* PUSH NOTE : = لم يخبرونا بهذا قبل أن نتزوج.md

* PUSH NOTE : = لصوص الصحة النفسية.md

* PUSH NOTE : = كامل الصورة.md

* PUSH NOTE : = صفة الجنة وما أعد الله لأهلها من النعيم.md

* PUSH NOTE : = فقه النفس من أقوال العلماء وأعمالهم.md

* PUSH NOTE : = فصول في أصول التفسير.md

* PUSH NOTE : = فصول في العقيدة الرسالة الشاميَة.md

* PUSH NOTE : = غيث الساري من هدايات البخاري.md

* PUSH NOTE : = عمل القلب الفريضة الغائبة.md

* PUSH NOTE : = علو الهمة.md

* PUSH NOTE : = شرح الأرجوزة المفيدة في شرح قواعد العقيدة.md

* PUSH NOTE : = صريح السنة.md

* PUSH NOTE : = شرح حديث ما ذئبان جائعان.md

* PUSH NOTE : = شرح ثلاثة الأصول.md

* PUSH NOTE : = سلطة الثقافة الغالبة.md

* PUSH NOTE : = تثبيت حجية السنة ونقض أصول المنكرين.md

* PUSH NOTE : = سابغات.md

* PUSH NOTE : = روضة الزاهدين.md

* PUSH NOTE : = رقائق القرآن.md

* PUSH NOTE : = رسالة ابن القيم إلى أحد إخوانه.md

* PUSH NOTE : = ذوق الصلاة عند ابن القيم رحمه الله.md

* PUSH NOTE : = ذم قسوة القلب وذكر أسبابها.md

* PUSH NOTE : = جمالية الدين.md

* PUSH NOTE : = تيسير اللطيف المنان في خلاصة تفسير القرآن.md

* PUSH NOTE : = تنبيه النائم الغمر على مواسم العمر.md

* PUSH NOTE : = تذكرة السامع والمتكلم في أدب العالم والمتعلم.md

* PUSH NOTE : = تعظيم العلم.md

* PUSH NOTE : = تطريز كتاب صفة صلاة النبي ﷺ.md

* PUSH NOTE : = تطريز شرح حديث أبي الدرداء.md

* PUSH NOTE : = الوسائل المفيدة للحياة السعيدة.md

* PUSH NOTE : = المنهج العلمي لطلاب العلم الشرعي.md

* PUSH NOTE : = بيان فضل علم السلف على علم الخلف.md

* PUSH NOTE : = بيان إعجاز القرآن.md

* PUSH NOTE : = الوصية الصغرى.md

* PUSH NOTE : = الزهد وصفة الزاهدين.md

* PUSH NOTE : = الماجريات.md

* PUSH NOTE : = اللمسات الحانية في بيت النبوة.md

* PUSH NOTE : = القواعد المثلى في صفات الله وأسمائه الحسنى.md

* PUSH ATTACHMENT : تشجير القواعد المثلى.svg

* PUSH NOTE : = الفرج بعد الشدة.md

* PUSH NOTE : = العلم والحلم.md

* PUSH NOTE : = العقيدة في الله.md

* PUSH NOTE : = العدوان على العربية.md

* PUSH NOTE : = العبودية.md

* PUSH NOTE : = الرسالة التبوكية (زاد المهاجر إلى ربه).md

* PUSH NOTE : = الرجال من المريخ والنساء من الزهرة.md

* PUSH NOTE : = الرباط المقدس.md

* PUSH NOTE : = الدورة التأهيلية للحياة الزوجية.md

* PUSH NOTE : = التذكرة في الوعظ.md

* PUSH NOTE : = التحفة العراقية تحقيق ودراسة.md

* PUSH NOTE : = البيان والتسديد بشرح الأربعين في دلائل التوحيد.md

* PUSH NOTE : = البناء العقدي للجيل الصاعد.md

* PUSH NOTE : = الاحتجاج بالآثار السلفية على إثبات الصفات الإلهية والرد على المفوضة والمشبهة والجهمية.md

* PUSH NOTE : = الاختلاط.md

* PUSH NOTE : = الإسلام على مفترق الطرق.md

* PUSH NOTE : = الأساليب النبوية في التعامل مع أخطاء الناس.md

* PUSH NOTE : = ارتياض العلوم.md

* PUSH NOTE : = استراتيجية ابن باديس في تدبر القرآن وآثرها في نهضة الأمة الإسلامية.md

* PUSH NOTE : = إلى حبيبين.md

* PUSH NOTE : = إغاثة الأمة بكشف الغمة.md

* PUSH NOTE : = أخلاق أهل القرآن.md

* PUSH NOTE : دورة البيت المسلم - م أيمن عبد الرحيم.md

* PUSH NOTE : > كيف تنجح العلاقات مع ياسر الحزيمي - بودكاست فنجان.md

* PUSH NOTE : - مدخل لدراسة أصول الفقه - الدرس الاول 2-2 - أهمية علم اصول الفقه - حسن بخاري.md

* PUSH NOTE : - مدخل لدراسة أصول الفقه - الدرس الاول 1-2 - أهمية علم اصول الفقه - حسن بخاري.md

* PUSH NOTE : - محاضرة إعجاز القرآن عند المتقدمين - أحمد السيد.md

* PUSH NOTE : - ماذا نفعل في ظل هذه الأوضاع الاقتصادية.md

* PUSH NOTE : - فقه التواصل الرقمي - الدكتور عبد الرحمن ذاكر الهاشمي.md

* PUSH NOTE : - عمل اليوم والليلة - عبد الرحمن ذاكر الهاشمي.md

* PUSH NOTE : - طلب العلم والتكسُّب.md

* PUSH NOTE : - الحُسْنَى بين الجمال والجلال.md

* PUSH NOTE : - إعادة تشغيل الذات - نحو عملٍ مُتقَن وإنتاجية حقيقية.md

* PUSH NOTE : - إعادة تشغيل الذات - معيقات ومعينات الطريق.md

* PUSH NOTE : - إعادة تشغيل الذات - نصائح سريعة لتعلُّم صِحِّي نافع.md

* PUSH NOTE : + خطورة التهوين من معرفة رب العالمين.md

* PUSH NOTE : - إعادة تشغيل الذات - مقدمة وتصور عام لمحور وضع الأهداف والتخطيط.md

* PUSH NOTE : - إعادة تشغيل الذات - مهارة التدوين والتلخيص والأرشفة.md

* PUSH NOTE : - إعادة تشغيل الذات - لماذا إعادة تشغيل الذات.md

* PUSH NOTE : - إعادة تشغيل الذات - كيف يتشكَّل السلوك؟.md

* PUSH NOTE : - إعادة تشغيل الذات - كيف أحدد أهدافي؟ تحديد نقطة الوصول.md

* PUSH NOTE : - إعادة تشغيل الذات - ضبط الأصول يُغنيكَ عن معالجة الكثير مِن الفروع.md

* PUSH NOTE : - إعادة تشغيل الذات - دليل التعاطي مع البرنامج.md

* PUSH NOTE : - إعادة تشغيل الذات - خطورة استحالة الوسائل إلى غايات.md

* PUSH NOTE : - إعادة تشغيل الذات - تحديد الطريق - كيفية الوصول.md

* PUSH NOTE : - إعادة تشغيل الذات - النوم.md

* PUSH NOTE : - إعادة تشغيل الذات - اللقاء الافتتاحي - الدفعة الثانية.md

* PUSH NOTE : - إعادة تشغيل الذات - السلوكيات الإدمانية - الإباحية نموذجًا.md

* PUSH NOTE : - إعادة تشغيل الذات - الرياضة.md

* PUSH NOTE : - إعادة تشغيل الذات - الدوبامين - إعادة ضبط المصنع.md

* PUSH NOTE : - إعادة تشغيل الذات - التسويف - أسبابه وحلول مقترحة.md

* PUSH NOTE : - إعادة تشغيل الذات - الأوراد اليومية - عض عليها بالنواجذ.md

* PUSH NOTE : - إعادة تشغيل الذات - أهم صديقين في الرحلة الصبر والكتابة والتدوين.md

* PUSH NOTE : - إعادة تشغيل الذات - أنت آلة بدن وروح.md

* PUSH NOTE : - إعادة تشغيل الذات -  ألف باء تخطيط.md

* PUSH NOTE : + مركزة المركزيات - أحمد السيد.md

* PUSH NOTE : + موجة التشكيك في الثوابت الإسلامية - وصف وعلاج - أحمد السيد.md

* PUSH NOTE : + ولكن في التحريش بينهم - أحمد السيد.md

* PUSH NOTE : + وصايا للتعامل مع الخوف - ياسر الحزيمي.md

* PUSH NOTE : + من أنا؟ ولما أنا؟ لماذا خلقت؟ هويتي وظيفتي هدفي.md

* PUSH NOTE : + السواد الأعظم المنسي.md

* PUSH NOTE : + مركزيات القرآن الكريم - د أحمد عبد المنعم.md

* PUSH NOTE : + كيف أحدد أهدافي؟ مفاهيم وخطوات تساعد على تحديد الأهداف.md

* PUSH NOTE : + كيف أتغير 01 - ياسر الحزيمي.md

* PUSH NOTE : + شهود الشرع المنسيون.md

* PUSH NOTE : + صفاتي الشخصية وتحليلها - آدم الصقور.md

* PUSH NOTE : + خريطة أصول التفسير - أ.د. مساعد الطيار - برنامج مدارسات - اللقاء العلمي (2).md

* PUSH NOTE : + خارطة عامة لوضع الأهداف والتخطيط.md

* PUSH NOTE : + تخلية النفس لله من منظور نفسي، لماذا؟ وكيف؟ - عبدالرحمن ذاكر الهاشمي.md

* PUSH NOTE : + بيان القرآن لسبيل المجرمين - أحمد السيد.md

* PUSH NOTE : + اعترافات أشعرية تقود للسلفية.md

* PUSH NOTE : + الله ثم النفس والآخرون - عبد الرحمن ذاكر الهاشمي.md

* PUSH NOTE : + العلاقات (أركانها - أنواعها - مراحلها - أمراضها - فيتاميناتها) - ياسر الحزيمي.md

* PUSH NOTE : + الرهاب الاجتماعي - آدم الصقور.md

* PUSH NOTE : + البيت المسلم المحاضرة السادسة م أيمن عبد الرحيم شيخ العمود.md

* PUSH NOTE : + البيت المسلم المحاضرة السابعة م أيمن عبد الرحيم شيخ العمود.md

* PUSH NOTE : + البيت المسلم المحاضرة الرابعة م أيمن عبد الرحيم شيخ العمود.md

* PUSH NOTE : + البيت المسلم المحاضرة الخامسة م أيمن عبد الرحيم شيخ العمود.md

* PUSH NOTE : + البيت المسلم المحاضرة الثانية م أيمن عبد الرحيم شيخ العمود.md

* PUSH NOTE : + البيت المسلم المحاضرة الثامنة والأخيرة م أيمن عبد الرحيم شيخ العمود.md

* PUSH NOTE : + البيت المسلم المحاضرة الأولى م أيمن عبد الرحيم شيخ العمود.md

* PUSH NOTE : + إعادة تشغيل الذات - ياسر الحزيمي.md

* PUSH NOTE : ) كتب أهل الحديث المطبوعة مرتبة على القرون.md
* PUSH NOTE : = تفسير سورة هود لمحمد بن عبد الوهاب.md

* PUSH NOTE : = لفتة الكبد إلى نصيحة الولد.md

* PUSH NOTE : = التبيان في آداب حملة القرآن.md
* PUSH NOTE : = لفتة الكبد إلى نصيحة الولد.md

* DELETE FILE : content/notes/media/= لفتة الكبد إلى نصيحة الولد.md
* PUSH NOTE : = المختار من جامع عقائد أهل السنة والآثار.md

* PUSH NOTE : = الإخوان لابن أبي الدنيا.md
…ates (#34)

Bumps the production-dependencies group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@clack/prompts](https://github.com/natemoo-re/clack/tree/HEAD/packages/prompts) | `0.8.1` | `0.9.0` |
| @myriaddreamin/rehype-typst | `0.5.0-rc7` | `0.5.0-rc9` |
| [chalk](https://github.com/chalk/chalk) | `5.3.0` | `5.4.1` |
| [chokidar](https://github.com/paulmillr/chokidar) | `4.0.1` | `4.0.3` |
| [hast-util-to-html](https://github.com/syntax-tree/hast-util-to-html) | `9.0.3` | `9.0.4` |
| [lightningcss](https://github.com/parcel-bundler/lightningcss) | `1.28.1` | `1.28.2` |
| [mermaid](https://github.com/mermaid-js/mermaid) | `11.4.0` | `11.4.1` |
| [pixi.js](https://github.com/pixijs/pixijs) | `8.5.2` | `8.6.6` |
| [preact](https://github.com/preactjs/preact) | `10.24.3` | `10.25.3` |
| [preact-render-to-string](https://github.com/preactjs/preact-render-to-string) | `6.5.11` | `6.5.12` |
| [satori](https://github.com/vercel/satori) | `0.11.3` | `0.12.0` |
| [shiki](https://github.com/shikijs/shiki/tree/HEAD/packages/shiki) | `1.23.1` | `1.24.4` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.9.0` | `22.10.2` |
| [esbuild](https://github.com/evanw/esbuild) | `0.24.0` | `0.24.2` |
| [prettier](https://github.com/prettier/prettier) | `3.3.3` | `3.4.2` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.6.3` | `5.7.2` |



Updates `@clack/prompts` from 0.8.1 to 0.9.0
- [Release notes](https://github.com/natemoo-re/clack/releases)
- [Changelog](https://github.com/bombshell-dev/clack/blob/main/packages/prompts/CHANGELOG.md)
- [Commits](https://github.com/natemoo-re/clack/commits/@clack/prompts@0.9.0/packages/prompts)

Updates `@myriaddreamin/rehype-typst` from 0.5.0-rc7 to 0.5.0-rc9

Updates `chalk` from 5.3.0 to 5.4.1
- [Release notes](https://github.com/chalk/chalk/releases)
- [Commits](chalk/chalk@v5.3.0...v5.4.1)

Updates `chokidar` from 4.0.1 to 4.0.3
- [Release notes](https://github.com/paulmillr/chokidar/releases)
- [Commits](paulmillr/chokidar@4.0.1...4.0.3)

Updates `hast-util-to-html` from 9.0.3 to 9.0.4
- [Release notes](https://github.com/syntax-tree/hast-util-to-html/releases)
- [Commits](syntax-tree/hast-util-to-html@9.0.3...9.0.4)

Updates `lightningcss` from 1.28.1 to 1.28.2
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](https://github.com/parcel-bundler/lightningcss/commits/v1.28.2)

Updates `mermaid` from 11.4.0 to 11.4.1
- [Release notes](https://github.com/mermaid-js/mermaid/releases)
- [Changelog](https://github.com/mermaid-js/mermaid/blob/develop/CHANGELOG.md)
- [Commits](https://github.com/mermaid-js/mermaid/compare/mermaid@11.4.0...mermaid@11.4.1)

Updates `pixi.js` from 8.5.2 to 8.6.6
- [Release notes](https://github.com/pixijs/pixijs/releases)
- [Commits](pixijs/pixijs@v8.5.2...v8.6.6)

Updates `preact` from 10.24.3 to 10.25.3
- [Release notes](https://github.com/preactjs/preact/releases)
- [Commits](preactjs/preact@10.24.3...10.25.3)

Updates `preact-render-to-string` from 6.5.11 to 6.5.12
- [Release notes](https://github.com/preactjs/preact-render-to-string/releases)
- [Changelog](https://github.com/preactjs/preact-render-to-string/blob/main/CHANGELOG.md)
- [Commits](preactjs/preact-render-to-string@v6.5.11...v6.5.12)

Updates `satori` from 0.11.3 to 0.12.0
- [Release notes](https://github.com/vercel/satori/releases)
- [Commits](vercel/satori@0.11.3...0.12.0)

Updates `shiki` from 1.23.1 to 1.24.4
- [Release notes](https://github.com/shikijs/shiki/releases)
- [Changelog](https://github.com/shikijs/shiki/blob/main/CHANGELOG.md)
- [Commits](https://github.com/shikijs/shiki/commits/v1.24.4/packages/shiki)

Updates `@types/node` from 22.9.0 to 22.10.2
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `esbuild` from 0.24.0 to 0.24.2
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.24.0...v0.24.2)

Updates `prettier` from 3.3.3 to 3.4.2
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.3.3...3.4.2)

Updates `typescript` from 5.6.3 to 5.7.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.6.3...v5.7.2)

---
updated-dependencies:
- dependency-name: "@clack/prompts"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@myriaddreamin/rehype-typst"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: chalk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: chokidar
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: hast-util-to-html
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: lightningcss
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: mermaid
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: pixi.js
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: preact
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: preact-render-to-string
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: satori
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: shiki
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* PUSH NOTE : = التوحيد وبيان العقيدة السلفية النقية.md

* PUSH NOTE : = ‫الهم والحزن‬.md
thehiddenbot and others added 16 commits December 29, 2024 20:38
…ates

Bumps the production-dependencies group with 25 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@clack/prompts](https://github.com/natemoo-re/clack/tree/HEAD/packages/prompts) | `0.9.0` | `0.10.0` |
| [@floating-ui/dom](https://github.com/floating-ui/floating-ui/tree/HEAD/packages/dom) | `1.6.12` | `1.6.13` |
| @myriaddreamin/rehype-typst | `0.5.0-rc9` | `0.5.4` |
| [flexsearch](https://github.com/nextapps-de/flexsearch) | `0.7.43` | `0.8.1` |
| [globby](https://github.com/sindresorhus/globby) | `14.0.2` | `14.1.0` |
| [hast-util-to-html](https://github.com/syntax-tree/hast-util-to-html) | `9.0.4` | `9.0.5` |
| [hast-util-to-jsx-runtime](https://github.com/syntax-tree/hast-util-to-jsx-runtime) | `2.3.2` | `2.3.6` |
| [lightningcss](https://github.com/parcel-bundler/lightningcss) | `1.28.2` | `1.29.3` |
| [mdast-util-find-and-replace](https://github.com/syntax-tree/mdast-util-find-and-replace) | `3.0.1` | `3.0.2` |
| [mermaid](https://github.com/mermaid-js/mermaid) | `11.4.1` | `11.5.0` |
| [pixi.js](https://github.com/pixijs/pixijs) | `8.6.6` | `8.8.1` |
| [preact](https://github.com/preactjs/preact) | `10.25.3` | `10.26.4` |
| [preact-render-to-string](https://github.com/preactjs/preact-render-to-string) | `6.5.12` | `6.5.13` |
| [rehype-mathjax](https://github.com/remarkjs/remark-math) | `6.0.0` | `7.1.0` |
| [rehype-pretty-code](https://github.com/rehype-pretty/rehype-pretty-code/tree/HEAD/packages/core) | `0.14.0` | `0.14.1` |
| [remark-gfm](https://github.com/remarkjs/remark-gfm) | `4.0.0` | `4.0.1` |
| [satori](https://github.com/vercel/satori) | `0.12.0` | `0.12.1` |
| [shiki](https://github.com/shikijs/shiki/tree/HEAD/packages/shiki) | `1.24.4` | `3.2.1` |
| [ws](https://github.com/websockets/ws) | `8.18.0` | `8.18.1` |
| [@types/ws](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/ws) | `8.5.13` | `8.18.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.2` | `22.13.10` |
| [esbuild](https://github.com/evanw/esbuild) | `0.24.2` | `0.25.1` |
| [prettier](https://github.com/prettier/prettier) | `3.4.2` | `3.5.3` |
| [tsx](https://github.com/privatenumber/tsx) | `4.19.2` | `4.19.3` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.2` | `5.8.2` |



Updates `@clack/prompts` from 0.9.0 to 0.10.0
- [Release notes](https://github.com/natemoo-re/clack/releases)
- [Changelog](https://github.com/bombshell-dev/clack/blob/main/packages/prompts/CHANGELOG.md)
- [Commits](https://github.com/natemoo-re/clack/commits/@clack/prompts@0.10.0/packages/prompts)

Updates `@floating-ui/dom` from 1.6.12 to 1.6.13
- [Release notes](https://github.com/floating-ui/floating-ui/releases)
- [Changelog](https://github.com/floating-ui/floating-ui/blob/master/packages/dom/CHANGELOG.md)
- [Commits](https://github.com/floating-ui/floating-ui/commits/@floating-ui/dom@1.6.13/packages/dom)

Updates `@myriaddreamin/rehype-typst` from 0.5.0-rc9 to 0.5.4

Updates `flexsearch` from 0.7.43 to 0.8.1
- [Release notes](https://github.com/nextapps-de/flexsearch/releases)
- [Changelog](https://github.com/nextapps-de/flexsearch/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nextapps-de/flexsearch/commits)

Updates `globby` from 14.0.2 to 14.1.0
- [Release notes](https://github.com/sindresorhus/globby/releases)
- [Commits](sindresorhus/globby@v14.0.2...v14.1.0)

Updates `hast-util-to-html` from 9.0.4 to 9.0.5
- [Release notes](https://github.com/syntax-tree/hast-util-to-html/releases)
- [Commits](syntax-tree/hast-util-to-html@9.0.4...9.0.5)

Updates `hast-util-to-jsx-runtime` from 2.3.2 to 2.3.6
- [Release notes](https://github.com/syntax-tree/hast-util-to-jsx-runtime/releases)
- [Commits](syntax-tree/hast-util-to-jsx-runtime@2.3.2...2.3.6)

Updates `lightningcss` from 1.28.2 to 1.29.3
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](parcel-bundler/lightningcss@v1.28.2...v1.29.3)

Updates `mdast-util-find-and-replace` from 3.0.1 to 3.0.2
- [Release notes](https://github.com/syntax-tree/mdast-util-find-and-replace/releases)
- [Commits](syntax-tree/mdast-util-find-and-replace@3.0.1...3.0.2)

Updates `mermaid` from 11.4.1 to 11.5.0
- [Release notes](https://github.com/mermaid-js/mermaid/releases)
- [Changelog](https://github.com/mermaid-js/mermaid/blob/develop/CHANGELOG.md)
- [Commits](https://github.com/mermaid-js/mermaid/compare/mermaid@11.4.1...mermaid@11.5.0)

Updates `pixi.js` from 8.6.6 to 8.8.1
- [Release notes](https://github.com/pixijs/pixijs/releases)
- [Commits](pixijs/pixijs@v8.6.6...v8.8.1)

Updates `preact` from 10.25.3 to 10.26.4
- [Release notes](https://github.com/preactjs/preact/releases)
- [Commits](preactjs/preact@10.25.3...10.26.4)

Updates `preact-render-to-string` from 6.5.12 to 6.5.13
- [Release notes](https://github.com/preactjs/preact-render-to-string/releases)
- [Changelog](https://github.com/preactjs/preact-render-to-string/blob/main/CHANGELOG.md)
- [Commits](preactjs/preact-render-to-string@v6.5.12...v6.5.13)

Updates `rehype-mathjax` from 6.0.0 to 7.1.0
- [Release notes](https://github.com/remarkjs/remark-math/releases)
- [Commits](https://github.com/remarkjs/remark-math/compare/rehype-mathjax@6.0.0...rehype-mathjax@7.1.0)

Updates `rehype-pretty-code` from 0.14.0 to 0.14.1
- [Release notes](https://github.com/rehype-pretty/rehype-pretty-code/releases)
- [Changelog](https://github.com/rehype-pretty/rehype-pretty-code/blob/master/packages/core/CHANGELOG.md)
- [Commits](https://github.com/rehype-pretty/rehype-pretty-code/commits/rehype-pretty-code@0.14.1/packages/core)

Updates `remark-gfm` from 4.0.0 to 4.0.1
- [Release notes](https://github.com/remarkjs/remark-gfm/releases)
- [Commits](remarkjs/remark-gfm@4.0.0...4.0.1)

Updates `satori` from 0.12.0 to 0.12.1
- [Release notes](https://github.com/vercel/satori/releases)
- [Commits](vercel/satori@0.12.0...0.12.1)

Updates `shiki` from 1.24.4 to 3.2.1
- [Release notes](https://github.com/shikijs/shiki/releases)
- [Commits](https://github.com/shikijs/shiki/commits/v3.2.1/packages/shiki)

Updates `ws` from 8.18.0 to 8.18.1
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@8.18.0...8.18.1)

Updates `@types/ws` from 8.5.13 to 8.18.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/ws)

Updates `@types/node` from 22.10.2 to 22.13.10
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@types/ws` from 8.5.13 to 8.18.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/ws)

Updates `esbuild` from 0.24.2 to 0.25.1
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2024.md)
- [Commits](evanw/esbuild@v0.24.2...v0.25.1)

Updates `prettier` from 3.4.2 to 3.5.3
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.4.2...3.5.3)

Updates `tsx` from 4.19.2 to 4.19.3
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.19.2...v4.19.3)

Updates `typescript` from 5.7.2 to 5.8.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.7.2...v5.8.2)

---
updated-dependencies:
- dependency-name: "@clack/prompts"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@floating-ui/dom"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@myriaddreamin/rehype-typst"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: flexsearch
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: globby
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: hast-util-to-html
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: hast-util-to-jsx-runtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: lightningcss
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: mdast-util-find-and-replace
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: mermaid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: pixi.js
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: preact
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: preact-render-to-string
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: rehype-mathjax
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: rehype-pretty-code
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: remark-gfm
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: satori
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: shiki
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: ws
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@types/ws"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@types/ws"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: tsx
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 17, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github May 10, 2025

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/production-dependencies-35a1d95d9f branch May 10, 2025 22:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants