Bump the npm group with 31 updates
Type: Pull Request
State: Open
Association: Contributor
Comments: 2
(12 months ago)
(12 months ago)
dependencies javascript
poad
Bumps the npm group with 31 updates:
Updates astro from 5.8.2 to 5.9.0
Release notes
Sourced from astro's releases.
astro@5.9.0
Minor Changes
#13802
0eafe14Thanks@ematipico! - Adds experimental Content Security Policy (CSP) supportCSP is an important feature to provide fine-grained control over resources that can or cannot be downloaded and executed by a document. In particular, it can help protect against cross-site scripting (XSS) attacks.
Enabling this feature adds additional security to Astro's handling of processed and bundled scripts and styles by default, and allows you to further configure these, and additional, content types. This new experimental feature has been designed to work in every Astro rendering environment (static pages, dynamic pages and single page applications), while giving you maximum flexibility and with type-safety in mind.
It is compatible with most of Astro's features such as client islands, and server islands, although Astro's view transitions using the
<ClientRouter />are not yet fully supported. Inline scripts are not supported out of the box, but you can provide your own hashes for external and inline scripts.To enable this feature, add the experimental flag in your Astro config:
// astro.config.mjs import { defineConfig } from 'astro/config';export default defineConfig({ experimental: { csp: true, }, });
For more information on enabling and using this feature in your project, see the Experimental CSP docs.
For a complete overview, and to give feedback on this experimental API, see the Content Security Policy RFC.
#13850
1766d22Thanks@ascorbic! - Provides a Markdown renderer to content loadersWhen creating a content loader, you will now have access to a
renderMarkdownfunction that allows you to render Markdown content directly within your loaders. It uses the same settings and plugins as the renderer used for Markdown files in Astro, and follows any Markdown settings you have configured in your Astro project.This allows you to render Markdown content from various sources, such as a CMS or other data sources, directly in your loaders without needing to preprocess the Markdown content separately.
import type { Loader } from 'astro/loaders'; import { loadFromCMS } from './cms';export function myLoader(settings): Loader { return { name: 'my-loader', async load({ renderMarkdown, store }) { const entries = await loadFromCMS();
store.clear();for (const entry of entries) {
// Assume each entry has a 'content' field with markdown content
store.set(entry.id, {
id: entry.id,
... (truncated)
Changelog
Sourced from astro's changelog.
5.9.0
Minor Changes
#13802
0eafe14Thanks@ematipico! - Adds experimental Content Security Policy (CSP) supportCSP is an important feature to provide fine-grained control over resources that can or cannot be downloaded and executed by a document. In particular, it can help protect against cross-site scripting (XSS) attacks.
Enabling this feature adds additional security to Astro's handling of processed and bundled scripts and styles by default, and allows you to further configure these, and additional, content types. This new experimental feature has been designed to work in every Astro rendering environment (static pages, dynamic pages and single page applications), while giving you maximum flexibility and with type-safety in mind.
It is compatible with most of Astro's features such as client islands, and server islands, although Astro's view transitions using the
<ClientRouter />are not yet fully supported. Inline scripts are not supported out of the box, but you can provide your own hashes for external and inline scripts.To enable this feature, add the experimental flag in your Astro config:
// astro.config.mjs import { defineConfig } from 'astro/config';export default defineConfig({ experimental: { csp: true, }, });
For more information on enabling and using this feature in your project, see the Experimental CSP docs.
For a complete overview, and to give feedback on this experimental API, see the Content Security Policy RFC.
#13850
1766d22Thanks@ascorbic! - Provides a Markdown renderer to content loadersWhen creating a content loader, you will now have access to a
renderMarkdownfunction that allows you to render Markdown content directly within your loaders. It uses the same settings and plugins as the renderer used for Markdown files in Astro, and follows any Markdown settings you have configured in your Astro project.This allows you to render Markdown content from various sources, such as a CMS or other data sources, directly in your loaders without needing to preprocess the Markdown content separately.
import type { Loader } from 'astro/loaders'; import { loadFromCMS } from './cms';export function myLoader(settings): Loader { return { name: 'my-loader', async load({ renderMarkdown, store }) { const entries = await loadFromCMS();
store.clear();for (const entry of entries) {
// Assume each entry has a 'content' field with markdown content
store.set(entry.id, {
... (truncated)
Commits
Updates @rollup/rollup-android-arm-eabi from 4.41.1 to 4.41.2
Release notes
Sourced from @rollup/rollup-android-arm-eabi's releases.
v4.41.2
4.41.2
2025-06-06
Bug Fixes
- Detect named export usages in dynamic imports with
thenand non-arrow function expressions (#5977)- Do not replace usages of constant variables with their values for readability (#5968)
Pull Requests
- #5968: fix: preserve constant identifiers in unary expressions instead of magic numbers (
@OmkarJ13,@lukastaegert)- #5969: chore(deps): update dependency yargs-parser to v22 (
@renovate[bot],@lukastaegert)- #5970: chore(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5971: chore(deps): lock file maintenance (
@renovate[bot])- #5976: Update README.md (
@ftlno,@lukastaegert)- #5977: fix: consider function expression in thenable when tree-shaking dynamic imports (
@TrickyPi)- #5981: fix(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5982: Debug/fix watch pipeline (
@lukastaegert)
Changelog
Sourced from @rollup/rollup-android-arm-eabi's changelog.
4.41.2
2025-06-06
Bug Fixes
- Detect named export usages in dynamic imports with
thenand non-arrow function expressions (#5977)- Do not replace usages of constant variables with their values for readability (#5968)
Pull Requests
- #5968: fix: preserve constant identifiers in unary expressions instead of magic numbers (
@OmkarJ13,@lukastaegert)- #5969: chore(deps): update dependency yargs-parser to v22 (
@renovate[bot],@lukastaegert)- #5970: chore(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5971: chore(deps): lock file maintenance (
@renovate[bot])- #5976: Update README.md (
@ftlno,@lukastaegert)- #5977: fix: consider function expression in thenable when tree-shaking dynamic imports (
@TrickyPi)- #5981: fix(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5982: Debug/fix watch pipeline (
@lukastaegert)
Commits
13b46694.41.2149d94cDebug/fix watch pipeline (#5982)13992f2Update README.md (#5976)224c900fix: preserve constant identifiers in unary expressions instead of magic numb...da88626fix: consider function expression in thenable when tree-shaking dynamic impor...8f0dbc9fix(deps): lock file maintenance minor/patch updates (#5981)4f69d33chore(deps): update dependency yargs-parser to v22 (#5969)0fbd796chore(deps): lock file maintenance (#5971)11dba62chore(deps): lock file maintenance minor/patch updates (#5970)- See full diff in compare view
Updates @rollup/rollup-android-arm64 from 4.41.1 to 4.41.2
Release notes
Sourced from @rollup/rollup-android-arm64's releases.
v4.41.2
4.41.2
2025-06-06
Bug Fixes
- Detect named export usages in dynamic imports with
thenand non-arrow function expressions (#5977)- Do not replace usages of constant variables with their values for readability (#5968)
Pull Requests
- #5968: fix: preserve constant identifiers in unary expressions instead of magic numbers (
@OmkarJ13,@lukastaegert)- #5969: chore(deps): update dependency yargs-parser to v22 (
@renovate[bot],@lukastaegert)- #5970: chore(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5971: chore(deps): lock file maintenance (
@renovate[bot])- #5976: Update README.md (
@ftlno,@lukastaegert)- #5977: fix: consider function expression in thenable when tree-shaking dynamic imports (
@TrickyPi)- #5981: fix(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5982: Debug/fix watch pipeline (
@lukastaegert)
Changelog
Sourced from @rollup/rollup-android-arm64's changelog.
4.41.2
2025-06-06
Bug Fixes
- Detect named export usages in dynamic imports with
thenand non-arrow function expressions (#5977)- Do not replace usages of constant variables with their values for readability (#5968)
Pull Requests
- #5968: fix: preserve constant identifiers in unary expressions instead of magic numbers (
@OmkarJ13,@lukastaegert)- #5969: chore(deps): update dependency yargs-parser to v22 (
@renovate[bot],@lukastaegert)- #5970: chore(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5971: chore(deps): lock file maintenance (
@renovate[bot])- #5976: Update README.md (
@ftlno,@lukastaegert)- #5977: fix: consider function expression in thenable when tree-shaking dynamic imports (
@TrickyPi)- #5981: fix(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5982: Debug/fix watch pipeline (
@lukastaegert)
Commits
13b46694.41.2149d94cDebug/fix watch pipeline (#5982)13992f2Update README.md (#5976)224c900fix: preserve constant identifiers in unary expressions instead of magic numb...da88626fix: consider function expression in thenable when tree-shaking dynamic impor...8f0dbc9fix(deps): lock file maintenance minor/patch updates (#5981)4f69d33chore(deps): update dependency yargs-parser to v22 (#5969)0fbd796chore(deps): lock file maintenance (#5971)11dba62chore(deps): lock file maintenance minor/patch updates (#5970)- See full diff in compare view
Updates @rollup/rollup-darwin-arm64 from 4.41.1 to 4.41.2
Release notes
Sourced from @rollup/rollup-darwin-arm64's releases.
v4.41.2
4.41.2
2025-06-06
Bug Fixes
- Detect named export usages in dynamic imports with
thenand non-arrow function expressions (#5977)- Do not replace usages of constant variables with their values for readability (#5968)
Pull Requests
- #5968: fix: preserve constant identifiers in unary expressions instead of magic numbers (
@OmkarJ13,@lukastaegert)- #5969: chore(deps): update dependency yargs-parser to v22 (
@renovate[bot],@lukastaegert)- #5970: chore(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5971: chore(deps): lock file maintenance (
@renovate[bot])- #5976: Update README.md (
@ftlno,@lukastaegert)- #5977: fix: consider function expression in thenable when tree-shaking dynamic imports (
@TrickyPi)- #5981: fix(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5982: Debug/fix watch pipeline (
@lukastaegert)
Changelog
Sourced from @rollup/rollup-darwin-arm64's changelog.
4.41.2
2025-06-06
Bug Fixes
- Detect named export usages in dynamic imports with
thenand non-arrow function expressions (#5977)- Do not replace usages of constant variables with their values for readability (#5968)
Pull Requests
- #5968: fix: preserve constant identifiers in unary expressions instead of magic numbers (
@OmkarJ13,@lukastaegert)- #5969: chore(deps): update dependency yargs-parser to v22 (
@renovate[bot],@lukastaegert)- #5970: chore(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5971: chore(deps): lock file maintenance (
@renovate[bot])- #5976: Update README.md (
@ftlno,@lukastaegert)- #5977: fix: consider function expression in thenable when tree-shaking dynamic imports (
@TrickyPi)- #5981: fix(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5982: Debug/fix watch pipeline (
@lukastaegert)
Commits
13b46694.41.2149d94cDebug/fix watch pipeline (#5982)13992f2Update README.md (#5976)224c900fix: preserve constant identifiers in unary expressions instead of magic numb...da88626fix: consider function expression in thenable when tree-shaking dynamic impor...8f0dbc9fix(deps): lock file maintenance minor/patch updates (#5981)4f69d33chore(deps): update dependency yargs-parser to v22 (#5969)0fbd796chore(deps): lock file maintenance (#5971)11dba62chore(deps): lock file maintenance minor/patch updates (#5970)- See full diff in compare view
Updates @rollup/rollup-darwin-x64 from 4.41.1 to 4.41.2
Release notes
Sourced from @rollup/rollup-darwin-x64's releases.
v4.41.2
4.41.2
2025-06-06
Bug Fixes
- Detect named export usages in dynamic imports with
thenand non-arrow function expressions (#5977)- Do not replace usages of constant variables with their values for readability (#5968)
Pull Requests
- #5968: fix: preserve constant identifiers in unary expressions instead of magic numbers (
@OmkarJ13,@lukastaegert)- #5969: chore(deps): update dependency yargs-parser to v22 (
@renovate[bot],@lukastaegert)- #5970: chore(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5971: chore(deps): lock file maintenance (
@renovate[bot])- #5976: Update README.md (
@ftlno,@lukastaegert)- #5977: fix: consider function expression in thenable when tree-shaking dynamic imports (
@TrickyPi)- #5981: fix(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5982: Debug/fix watch pipeline (
@lukastaegert)
Changelog
Sourced from @rollup/rollup-darwin-x64's changelog.
4.41.2
2025-06-06
Bug Fixes
- Detect named export usages in dynamic imports with
thenand non-arrow function expressions (#5977)- Do not replace usages of constant variables with their values for readability (#5968)
Pull Requests
- #5968: fix: preserve constant identifiers in unary expressions instead of magic numbers (
@OmkarJ13,@lukastaegert)- #5969: chore(deps): update dependency yargs-parser to v22 (
@renovate[bot],@lukastaegert)- #5970: chore(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5971: chore(deps): lock file maintenance (
@renovate[bot])- #5976: Update README.md (
@ftlno,@lukastaegert)- #5977: fix: consider function expression in thenable when tree-shaking dynamic imports (
@TrickyPi)- #5981: fix(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5982: Debug/fix watch pipeline (
@lukastaegert)
Commits
13b46694.41.2149d94cDebug/fix watch pipeline (#5982)13992f2Update README.md (#5976)224c900fix: preserve constant identifiers in unary expressions instead of magic numb...da88626fix: consider function expression in thenable when tree-shaking dynamic impor...8f0dbc9fix(deps): lock file maintenance minor/patch updates (#5981)4f69d33chore(deps): update dependency yargs-parser to v22 (#5969)0fbd796chore(deps): lock file maintenance (#5971)11dba62chore(deps): lock file maintenance minor/patch updates (#5970)- See full diff in compare view
Updates @rollup/rollup-freebsd-arm64 from 4.41.1 to 4.41.2
Release notes
Sourced from @rollup/rollup-freebsd-arm64's releases.
v4.41.2
4.41.2
2025-06-06
Bug Fixes
- Detect named export usages in dynamic imports with
thenand non-arrow function expressions (#5977)- Do not replace usages of constant variables with their values for readability (#5968)
Pull Requests
- #5968: fix: preserve constant identifiers in unary expressions instead of magic numbers (
@OmkarJ13,@lukastaegert)- #5969: chore(deps): update dependency yargs-parser to v22 (
@renovate[bot],@lukastaegert)- #5970: chore(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5971: chore(deps): lock file maintenance (
@renovate[bot])- #5976: Update README.md (
@ftlno,@lukastaegert)- #5977: fix: consider function expression in thenable when tree-shaking dynamic imports (
@TrickyPi)- #5981: fix(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5982: Debug/fix watch pipeline (
@lukastaegert)
Changelog
Sourced from @rollup/rollup-freebsd-arm64's changelog.
4.41.2
2025-06-06
Bug Fixes
- Detect named export usages in dynamic imports with
thenand non-arrow function expressions (#5977)- Do not replace usages of constant variables with their values for readability (#5968)
Pull Requests
- #5968: fix: preserve constant identifiers in unary expressions instead of magic numbers (
@OmkarJ13,@lukastaegert)- #5969: chore(deps): update dependency yargs-parser to v22 (
@renovate[bot],@lukastaegert)- #5970: chore(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5971: chore(deps): lock file maintenance (
@renovate[bot])- #5976: Update README.md (
@ftlno,@lukastaegert)- #5977: fix: consider function expression in thenable when tree-shaking dynamic imports (
@TrickyPi)- #5981: fix(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5982: Debug/fix watch pipeline (
@lukastaegert)
Commits
13b46694.41.2149d94cDebug/fix watch pipeline (#5982)13992f2Update README.md (#5976)224c900fix: preserve constant identifiers in unary expressions instead of magic numb...da88626fix: consider function expression in thenable when tree-shaking dynamic impor...8f0dbc9fix(deps): lock file maintenance minor/patch updates (#5981)4f69d33chore(deps): update dependency yargs-parser to v22 (#5969)0fbd796chore(deps): lock file maintenance (#5971)11dba62chore(deps): lock file maintenance minor/patch updates (#5970)- See full diff in compare view
Updates @rollup/rollup-freebsd-x64 from 4.41.1 to 4.41.2
Release notes
Sourced from @rollup/rollup-freebsd-x64's releases.
v4.41.2
4.41.2
2025-06-06
Bug Fixes
- Detect named export usages in dynamic imports with
thenand non-arrow function expressions (#5977)- Do not replace usages of constant variables with their values for readability (#5968)
Pull Requests
- #5968: fix: preserve constant identifiers in unary expressions instead of magic numbers (
@OmkarJ13,@lukastaegert)- #5969: chore(deps): update dependency yargs-parser to v22 (
@renovate[bot],@lukastaegert)- #5970: chore(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5971: chore(deps): lock file maintenance (
@renovate[bot])- #5976: Update README.md (
@ftlno,@lukastaegert)- #5977: fix: consider function expression in thenable when tree-shaking dynamic imports (
@TrickyPi)- #5981: fix(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5982: Debug/fix watch pipeline (
@lukastaegert)
Changelog
Sourced from @rollup/rollup-freebsd-x64's changelog.
4.41.2
2025-06-06
Bug Fixes
- Detect named export usages in dynamic imports with
thenand non-arrow function expressions (#5977)- Do not replace usages of constant variables with their values for readability (#5968)
Pull Requests
- #5968: fix: preserve constant identifiers in unary expressions instead of magic numbers (
@OmkarJ13,@lukastaegert)- #5969: chore(deps): update dependency yargs-parser to v22 (
@renovate[bot],@lukastaegert)- #5970: chore(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5971: chore(deps): lock file maintenance (
@renovate[bot])- #5976: Update README.md (
@ftlno,@lukastaegert)- #5977: fix: consider function expression in thenable when tree-shaking dynamic imports (
@TrickyPi)- #5981: fix(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5982: Debug/fix watch pipeline (
@lukastaegert)
Commits
13b46694.41.2149d94cDebug/fix watch pipeline (#5982)13992f2Update README.md (#5976)224c900fix: preserve constant identifiers in unary expressions instead of magic numb...da88626fix: consider function expression in thenable when tree-shaking dynamic impor...8f0dbc9fix(deps): lock file maintenance minor/patch updates (#5981)4f69d33chore(deps): update dependency yargs-parser to v22 (#5969)0fbd796chore(deps): lock file maintenance (#5971)11dba62chore(deps): lock file maintenance minor/patch updates (#5970)- See full diff in compare view
Updates @rollup/rollup-linux-arm-gnueabihf from 4.41.1 to 4.41.2
Release notes
Sourced from @rollup/rollup-linux-arm-gnueabihf's releases.
v4.41.2
4.41.2
2025-06-06
Bug Fixes
- Detect named export usages in dynamic imports with
thenand non-arrow function expressions (#5977)- Do not replace usages of constant variables with their values for readability (#5968)
Pull Requests
- #5968: fix: preserve constant identifiers in unary expressions instead of magic numbers (
@OmkarJ13,@lukastaegert)- #5969: chore(deps): update dependency yargs-parser to v22 (
@renovate[bot],@lukastaegert)- #5970: chore(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5971: chore(deps): lock file maintenance (
@renovate[bot])- #5976: Update README.md (
@ftlno,@lukastaegert)- #5977: fix: consider function expression in thenable when tree-shaking dynamic imports (
@TrickyPi)- #5981: fix(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5982: Debug/fix watch pipeline (
@lukastaegert)
Changelog
Sourced from @rollup/rollup-linux-arm-gnueabihf's changelog.
4.41.2
2025-06-06
Bug Fixes
- Detect named export usages in dynamic imports with
thenand non-arrow function expressions (#5977)- Do not replace usages of constant variables with their values for readability (#5968)
Pull Requests
- #5968: fix: preserve constant identifiers in unary expressions instead of magic numbers (
@OmkarJ13,@lukastaegert)- #5969: chore(deps): update dependency yargs-parser to v22 (
@renovate[bot],@lukastaegert)- #5970: chore(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5971: chore(deps): lock file maintenance (
@renovate[bot])- #5976: Update README.md (
@ftlno,@lukastaegert)- #5977: fix: consider function expression in thenable when tree-shaking dynamic imports (
@TrickyPi)- #5981: fix(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5982: Debug/fix watch pipeline (
@lukastaegert)
Commits
13b46694.41.2149d94cDebug/fix watch pipeline (#5982)13992f2Update README.md (#5976)224c900fix: preserve constant identifiers in unary expressions instead of magic numb...da88626fix: consider function expression in thenable when tree-shaking dynamic impor...8f0dbc9fix(deps): lock file maintenance minor/patch updates (#5981)4f69d33chore(deps): update dependency yargs-parser to v22 (#5969)0fbd796chore(deps): lock file maintenance (#5971)11dba62chore(deps): lock file maintenance minor/patch updates (#5970)- See full diff in compare view
Updates @rollup/rollup-linux-arm-musleabihf from 4.41.1 to 4.41.2
Release notes
Sourced from @rollup/rollup-linux-arm-musleabihf's releases.
v4.41.2
4.41.2
2025-06-06
Bug Fixes
- Detect named export usages in dynamic imports with
thenand non-arrow function expressions (#5977)- Do not replace usages of constant variables with their values for readability (#5968)
Pull Requests
- #5968: fix: preserve constant identifiers in unary expressions instead of magic numbers (
@OmkarJ13,@lukastaegert)- #5969: chore(deps): update dependency yargs-parser to v22 (
@renovate[bot],@lukastaegert)- #5970: chore(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5971: chore(deps): lock file maintenance (
@renovate[bot])- #5976: Update README.md (
@ftlno,@lukastaegert)- #5977: fix: consider function expression in thenable when tree-shaking dynamic imports (
@TrickyPi)- #5981: fix(deps): lock file maintenance minor/patch updates (
@renovate[bot])- #5982: Debug/fix watch pipeline (
@lukastaegertDescription has been truncated
Pull Request Statistics
0
0
+0
-0
Package Dependencies
@rollup/rollup-linux-x64-gnu
npm
4.41.1 → 4.41.2
Patch
@rollup/rollup-linux-x64-musl
npm
4.41.1 → 4.41.2
Patch
@rollup/rollup-android-arm-eabi
npm
4.41.1 → 4.41.2
Patch
@rollup/rollup-android-arm64
npm
4.41.1 → 4.41.2
Patch
@rollup/rollup-darwin-arm64
npm
4.41.1 → 4.41.2
Patch
@rollup/rollup-darwin-x64
npm
4.41.1 → 4.41.2
Patch
@rollup/rollup-freebsd-arm64
npm
4.41.1 → 4.41.2
Patch
@rollup/rollup-freebsd-x64
npm
4.41.1 → 4.41.2
Patch
@rollup/rollup-linux-arm-gnueabihf
npm
4.41.1 → 4.41.2
Patch
@rollup/rollup-linux-arm-musleabihf
npm
4.41.1 → 4.41.2
Patch
@rollup/rollup-linux-arm64-gnu
npm
4.41.1 → 4.41.2
Patch
@rollup/rollup-linux-arm64-musl
npm
4.41.1 → 4.41.2
Patch
@rollup/rollup-linux-loongarch64-gnu
npm
4.41.1 → 4.41.2
Patch
@rollup/rollup-linux-powerpc64le-gnu
npm
4.41.1 → 4.41.2
Patch
@rollup/rollup-linux-riscv64-gnu
npm
4.41.1 → 4.41.2
Patch
@rollup/rollup-linux-riscv64-musl
npm
4.41.1 → 4.41.2
Patch
@rollup/rollup-linux-s390x-gnu
npm
4.41.1 → 4.41.2
Patch
@rollup/rollup-win32-arm64-msvc
npm
4.41.1 → 4.41.2
Patch
@rollup/rollup-win32-ia32-msvc
npm
4.41.1 → 4.41.2
Patch
@rollup/rollup-win32-x64-msvc
npm
4.41.1 → 4.41.2
Patch
Technical Details
| ID: | 71543 |
| UUID: | 3124644856 |
| Node ID: | PR_kwDOKSIIAM6ZYnOs |
| Host: | GitHub |
| Repository: | poad/astro-solid-example |