From 768c8ed21db9114fa99d6d8d87e8f7ad4350f855 Mon Sep 17 00:00:00 2001 From: "Fred K. Bot" <108291165+fredkbot@users.noreply.github.com> Date: Tue, 28 Jun 2022 06:33:13 -0700 Subject: [PATCH] [ci] update lockfile (#3740) Co-authored-by: FredKSchott --- examples/framework-multiple/package.json | 2 +- examples/framework-vue/package.json | 2 +- examples/integrations-playground/package.json | 2 +- examples/with-markdown/package.json | 2 +- examples/with-nanostores/package.json | 2 +- package.json | 10 +-- .../e2e/fixtures/client-only/package.json | 2 +- .../fixtures/multiple-frameworks/package.json | 2 +- .../fixtures/nested-in-preact/package.json | 2 +- .../e2e/fixtures/nested-in-react/package.json | 2 +- .../e2e/fixtures/nested-in-solid/package.json | 2 +- .../fixtures/nested-in-svelte/package.json | 2 +- .../e2e/fixtures/nested-in-vue/package.json | 2 +- packages/astro/package.json | 4 +- .../fixtures/react-component/package.json | 2 +- packages/integrations/deno/package.json | 2 +- packages/integrations/netlify/package.json | 2 +- packages/integrations/svelte/package.json | 6 +- packages/integrations/vue/package.json | 4 +- packages/markdown/remark/package.json | 2 +- packages/telemetry/package.json | 2 +- packages/webapi/package.json | 6 +- pnpm-lock.yaml | 74 +++++++++---------- scripts/package.json | 4 +- 24 files changed, 71 insertions(+), 71 deletions(-) diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 9e5265dd7..102fb2b9e 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -25,6 +25,6 @@ "react-dom": "^18.1.0", "solid-js": "^1.4.3", "svelte": "^3.48.0", - "vue": "^3.2.36" + "vue": "^3.2.37" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index e4adf3c8c..b4ff277b8 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -13,6 +13,6 @@ "astro": "^1.0.0-beta.57" }, "dependencies": { - "vue": "^3.2.36" + "vue": "^3.2.37" } } diff --git a/examples/integrations-playground/package.json b/examples/integrations-playground/package.json index 4a5a8b9fa..8d4c3f04b 100644 --- a/examples/integrations-playground/package.json +++ b/examples/integrations-playground/package.json @@ -26,6 +26,6 @@ "react": "^18.1.0", "react-dom": "^18.1.0", "svelte": "^3.48.0", - "vue": "^3.2.36" + "vue": "^3.2.37" } } diff --git a/examples/with-markdown/package.json b/examples/with-markdown/package.json index 6e749e548..16b0583cd 100644 --- a/examples/with-markdown/package.json +++ b/examples/with-markdown/package.json @@ -21,6 +21,6 @@ "react": "^18.1.0", "react-dom": "^18.1.0", "svelte": "^3.48.0", - "vue": "^3.2.36" + "vue": "^3.2.37" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 773149fc8..b6201319e 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -17,7 +17,7 @@ "react": "^18.1.0", "react-dom": "^18.1.0", "solid-nanostores": "0.0.6", - "vue": "^3.2.36" + "vue": "^3.2.37" }, "devDependencies": { "@astrojs/preact": "^0.2.0", diff --git a/package.json b/package.json index 342b882eb..769afbcd5 100644 --- a/package.json +++ b/package.json @@ -63,11 +63,11 @@ "@changesets/changelog-github": "0.4.4", "@changesets/cli": "2.22.0", "@octokit/action": "^3.18.1", - "@typescript-eslint/eslint-plugin": "^5.27.0", - "@typescript-eslint/parser": "^5.27.0", + "@typescript-eslint/eslint-plugin": "^5.27.1", + "@typescript-eslint/parser": "^5.27.1", "del": "^6.1.1", - "esbuild": "^0.14.42", - "eslint": "^8.16.0", + "esbuild": "^0.14.43", + "eslint": "^8.17.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-no-only-tests": "^2.6.0", "eslint-plugin-prettier": "^4.0.0", @@ -78,6 +78,6 @@ "pretty-bytes": "^6.0.0", "tiny-glob": "^0.2.9", "turbo": "1.2.5", - "typescript": "~4.7.2" + "typescript": "~4.7.3" } } diff --git a/packages/astro/e2e/fixtures/client-only/package.json b/packages/astro/e2e/fixtures/client-only/package.json index abb7cdfb3..2a1e89ab3 100644 --- a/packages/astro/e2e/fixtures/client-only/package.json +++ b/packages/astro/e2e/fixtures/client-only/package.json @@ -16,6 +16,6 @@ "react-dom": "^18.1.0", "solid-js": "^1.4.3", "svelte": "^3.48.0", - "vue": "^3.2.36" + "vue": "^3.2.37" } } diff --git a/packages/astro/e2e/fixtures/multiple-frameworks/package.json b/packages/astro/e2e/fixtures/multiple-frameworks/package.json index 2bcbde31e..36723d2fc 100644 --- a/packages/astro/e2e/fixtures/multiple-frameworks/package.json +++ b/packages/astro/e2e/fixtures/multiple-frameworks/package.json @@ -19,6 +19,6 @@ "react-dom": "^18.1.0", "solid-js": "^1.4.3", "svelte": "^3.48.0", - "vue": "^3.2.36" + "vue": "^3.2.37" } } diff --git a/packages/astro/e2e/fixtures/nested-in-preact/package.json b/packages/astro/e2e/fixtures/nested-in-preact/package.json index fb6877f0c..624316f91 100644 --- a/packages/astro/e2e/fixtures/nested-in-preact/package.json +++ b/packages/astro/e2e/fixtures/nested-in-preact/package.json @@ -16,6 +16,6 @@ "react-dom": "^18.1.0", "solid-js": "^1.4.3", "svelte": "^3.48.0", - "vue": "^3.2.36" + "vue": "^3.2.37" } } diff --git a/packages/astro/e2e/fixtures/nested-in-react/package.json b/packages/astro/e2e/fixtures/nested-in-react/package.json index 4aba5a5d4..29ee37d2a 100644 --- a/packages/astro/e2e/fixtures/nested-in-react/package.json +++ b/packages/astro/e2e/fixtures/nested-in-react/package.json @@ -16,6 +16,6 @@ "react-dom": "^18.1.0", "solid-js": "^1.4.3", "svelte": "^3.48.0", - "vue": "^3.2.36" + "vue": "^3.2.37" } } diff --git a/packages/astro/e2e/fixtures/nested-in-solid/package.json b/packages/astro/e2e/fixtures/nested-in-solid/package.json index b0c61713a..9a51cb009 100644 --- a/packages/astro/e2e/fixtures/nested-in-solid/package.json +++ b/packages/astro/e2e/fixtures/nested-in-solid/package.json @@ -16,6 +16,6 @@ "react-dom": "^18.1.0", "solid-js": "^1.4.3", "svelte": "^3.48.0", - "vue": "^3.2.36" + "vue": "^3.2.37" } } diff --git a/packages/astro/e2e/fixtures/nested-in-svelte/package.json b/packages/astro/e2e/fixtures/nested-in-svelte/package.json index 23e6d5aa6..ea847e24b 100644 --- a/packages/astro/e2e/fixtures/nested-in-svelte/package.json +++ b/packages/astro/e2e/fixtures/nested-in-svelte/package.json @@ -16,6 +16,6 @@ "react-dom": "^18.1.0", "solid-js": "^1.4.3", "svelte": "^3.48.0", - "vue": "^3.2.36" + "vue": "^3.2.37" } } diff --git a/packages/astro/e2e/fixtures/nested-in-vue/package.json b/packages/astro/e2e/fixtures/nested-in-vue/package.json index fc24f8ea3..30a389574 100644 --- a/packages/astro/e2e/fixtures/nested-in-vue/package.json +++ b/packages/astro/e2e/fixtures/nested-in-vue/package.json @@ -16,6 +16,6 @@ "react-dom": "^18.1.0", "solid-js": "^1.4.3", "svelte": "^3.48.0", - "vue": "^3.2.36" + "vue": "^3.2.37" } } diff --git a/packages/astro/package.json b/packages/astro/package.json index 2c61ba25b..0b07f6711 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -101,7 +101,7 @@ "diff": "^5.1.0", "eol": "^0.9.1", "es-module-lexer": "^0.10.5", - "esbuild": "^0.14.42", + "esbuild": "^0.14.43", "estree-walker": "^3.0.1", "execa": "^6.1.0", "fast-glob": "^3.2.11", @@ -122,7 +122,7 @@ "prompts": "^2.4.2", "recast": "^0.20.5", "resolve": "^1.22.0", - "rollup": "^2.75.5", + "rollup": "^2.75.6", "semver": "^7.3.7", "shiki": "^0.10.1", "sirv": "^2.0.2", diff --git a/packages/astro/test/fixtures/react-component/package.json b/packages/astro/test/fixtures/react-component/package.json index 73a159f61..dc9b2fd6f 100644 --- a/packages/astro/test/fixtures/react-component/package.json +++ b/packages/astro/test/fixtures/react-component/package.json @@ -8,6 +8,6 @@ "astro": "workspace:*", "react": "^18.1.0", "react-dom": "^18.1.0", - "vue": "^3.2.36" + "vue": "^3.2.37" } } diff --git a/packages/integrations/deno/package.json b/packages/integrations/deno/package.json index d84d23c4d..df164f2dd 100644 --- a/packages/integrations/deno/package.json +++ b/packages/integrations/deno/package.json @@ -25,7 +25,7 @@ "test": "deno test --allow-run --allow-env --allow-read --allow-net ./test/" }, "dependencies": { - "esbuild": "^0.14.42" + "esbuild": "^0.14.43" }, "devDependencies": { "astro": "workspace:*", diff --git a/packages/integrations/netlify/package.json b/packages/integrations/netlify/package.json index 9cf33befd..53f176782 100644 --- a/packages/integrations/netlify/package.json +++ b/packages/integrations/netlify/package.json @@ -31,7 +31,7 @@ }, "dependencies": { "@astrojs/webapi": "^0.12.0", - "esbuild": "^0.14.42" + "esbuild": "^0.14.43" }, "devDependencies": { "@netlify/edge-handler-types": "^0.34.1", diff --git a/packages/integrations/svelte/package.json b/packages/integrations/svelte/package.json index a9c653ea7..53ce95147 100644 --- a/packages/integrations/svelte/package.json +++ b/packages/integrations/svelte/package.json @@ -31,10 +31,10 @@ "dev": "astro-scripts dev \"src/**/*.ts\"" }, "dependencies": { - "@sveltejs/vite-plugin-svelte": "^1.0.0-next.47", + "@sveltejs/vite-plugin-svelte": "^1.0.0-next.48", "postcss-load-config": "^3.1.4", - "svelte-preprocess": "^4.10.6", - "vite": "^2.9.9" + "svelte-preprocess": "^4.10.7", + "vite": "^2.9.10" }, "devDependencies": { "astro": "workspace:*", diff --git a/packages/integrations/vue/package.json b/packages/integrations/vue/package.json index f91ce1cd3..a6b2989fe 100644 --- a/packages/integrations/vue/package.json +++ b/packages/integrations/vue/package.json @@ -32,12 +32,12 @@ }, "dependencies": { "@vitejs/plugin-vue": "^2.3.3", - "vite": "^2.9.9" + "vite": "^2.9.10" }, "devDependencies": { "astro": "workspace:*", "astro-scripts": "workspace:*", - "vue": "^3.2.36" + "vue": "^3.2.37" }, "peerDependencies": { "vue": "^3.2.30" diff --git a/packages/markdown/remark/package.json b/packages/markdown/remark/package.json index 08cca86bd..bceac4897 100644 --- a/packages/markdown/remark/package.json +++ b/packages/markdown/remark/package.json @@ -31,7 +31,7 @@ "acorn-jsx": "^5.3.2", "assert": "^2.0.0", "github-slugger": "^1.4.0", - "mdast-util-mdx-expression": "^1.2.0", + "mdast-util-mdx-expression": "^1.2.1", "mdast-util-mdx-jsx": "^1.2.0", "mdast-util-to-string": "^3.1.0", "micromark-extension-mdx-expression": "^1.0.3", diff --git a/packages/telemetry/package.json b/packages/telemetry/package.json index 31faf49fc..56d6e8ffd 100644 --- a/packages/telemetry/package.json +++ b/packages/telemetry/package.json @@ -38,7 +38,7 @@ }, "devDependencies": { "@types/dlv": "^1.1.2", - "@types/node": "^14.18.20", + "@types/node": "^14.18.21", "astro-scripts": "workspace:*" }, "engines": { diff --git a/packages/webapi/package.json b/packages/webapi/package.json index f2ab64fb5..414878317 100644 --- a/packages/webapi/package.json +++ b/packages/webapi/package.json @@ -59,7 +59,7 @@ "@rollup/plugin-typescript": "^8.3.2", "@types/chai": "^4.3.1", "@types/mocha": "^9.1.1", - "@types/node": "^14.18.20", + "@types/node": "^14.18.21", "@ungap/structured-clone": "^0.3.4", "abort-controller": "^3.0.0", "chai": "^4.3.6", @@ -68,10 +68,10 @@ "formdata-polyfill": "^4.0.10", "magic-string": "^0.25.9", "mocha": "^9.2.2", - "rollup": "^2.75.5", + "rollup": "^2.75.6", "rollup-plugin-terser": "^7.0.2", "tslib": "^2.4.0", - "typescript": "~4.7.2", + "typescript": "~4.7.3", "urlpattern-polyfill": "^1.0.0-rc5", "web-streams-polyfill": "^3.2.1" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2b89500c2..79afdc307 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -8,11 +8,11 @@ importers: '@changesets/changelog-github': 0.4.4 '@changesets/cli': 2.22.0 '@octokit/action': ^3.18.1 - '@typescript-eslint/eslint-plugin': ^5.27.0 - '@typescript-eslint/parser': ^5.27.0 + '@typescript-eslint/eslint-plugin': ^5.27.1 + '@typescript-eslint/parser': ^5.27.1 del: ^6.1.1 - esbuild: ^0.14.42 - eslint: ^8.16.0 + esbuild: ^0.14.43 + eslint: ^8.17.0 eslint-config-prettier: ^8.5.0 eslint-plugin-no-only-tests: ^2.6.0 eslint-plugin-prettier: ^4.0.0 @@ -23,7 +23,7 @@ importers: pretty-bytes: ^6.0.0 tiny-glob: ^0.2.9 turbo: 1.2.5 - typescript: ~4.7.2 + typescript: ~4.7.3 dependencies: '@astrojs/webapi': link:packages/webapi devDependencies: @@ -163,7 +163,7 @@ importers: react-dom: ^18.1.0 solid-js: ^1.4.3 svelte: ^3.48.0 - vue: ^3.2.36 + vue: ^3.2.37 dependencies: '@webcomponents/template-shadowroot': 0.1.0 lit: 2.2.5 @@ -236,7 +236,7 @@ importers: specifiers: '@astrojs/vue': ^0.2.0 astro: ^1.0.0-beta.57 - vue: ^3.2.36 + vue: ^3.2.37 dependencies: vue: 3.2.37 devDependencies: @@ -260,7 +260,7 @@ importers: react-dom: ^18.1.0 solid-js: ^1.4.3 svelte: ^3.48.0 - vue: ^3.2.36 + vue: ^3.2.37 dependencies: '@webcomponents/template-shadowroot': 0.1.0 lit: 2.2.5 @@ -359,7 +359,7 @@ importers: react: ^18.1.0 react-dom: ^18.1.0 svelte: ^3.48.0 - vue: ^3.2.36 + vue: ^3.2.37 dependencies: preact: 10.7.3 react: 18.1.0 @@ -416,7 +416,7 @@ importers: react: ^18.1.0 react-dom: ^18.1.0 solid-nanostores: 0.0.6 - vue: ^3.2.36 + vue: ^3.2.37 dependencies: '@nanostores/preact': 0.1.3_xtkr2uyxt54wubcnyxiwramgs4 '@nanostores/react': 0.1.5_ib7jseorxmnfrhevtrqzsp5cr4 @@ -509,7 +509,7 @@ importers: diff: ^5.1.0 eol: ^0.9.1 es-module-lexer: ^0.10.5 - esbuild: ^0.14.42 + esbuild: ^0.14.43 estree-walker: ^3.0.1 execa: ^6.1.0 fast-glob: ^3.2.11 @@ -531,7 +531,7 @@ importers: prompts: ^2.4.2 recast: ^0.20.5 resolve: ^1.22.0 - rollup: ^2.75.5 + rollup: ^2.75.6 sass: ^1.52.2 semver: ^7.3.7 shiki: ^0.10.1 @@ -680,7 +680,7 @@ importers: react-dom: ^18.1.0 solid-js: ^1.4.3 svelte: ^3.48.0 - vue: ^3.2.36 + vue: ^3.2.37 dependencies: preact: 10.7.3 react: 18.1.0 @@ -724,7 +724,7 @@ importers: react-dom: ^18.1.0 solid-js: ^1.4.3 svelte: ^3.48.0 - vue: ^3.2.36 + vue: ^3.2.37 dependencies: '@webcomponents/template-shadowroot': 0.1.0 lit: 2.2.5 @@ -756,7 +756,7 @@ importers: react-dom: ^18.1.0 solid-js: ^1.4.3 svelte: ^3.48.0 - vue: ^3.2.36 + vue: ^3.2.37 dependencies: preact: 10.7.3 react: 18.1.0 @@ -785,7 +785,7 @@ importers: react-dom: ^18.1.0 solid-js: ^1.4.3 svelte: ^3.48.0 - vue: ^3.2.36 + vue: ^3.2.37 dependencies: preact: 10.7.3 react: 18.1.0 @@ -814,7 +814,7 @@ importers: react-dom: ^18.1.0 solid-js: ^1.4.3 svelte: ^3.48.0 - vue: ^3.2.36 + vue: ^3.2.37 dependencies: preact: 10.7.3 react: 18.1.0 @@ -843,7 +843,7 @@ importers: react-dom: ^18.1.0 solid-js: ^1.4.3 svelte: ^3.48.0 - vue: ^3.2.36 + vue: ^3.2.37 dependencies: preact: 10.7.3 react: 18.1.0 @@ -872,7 +872,7 @@ importers: react-dom: ^18.1.0 solid-js: ^1.4.3 svelte: ^3.48.0 - vue: ^3.2.36 + vue: ^3.2.37 dependencies: preact: 10.7.3 react: 18.1.0 @@ -1558,7 +1558,7 @@ importers: astro: workspace:* react: ^18.1.0 react-dom: ^18.1.0 - vue: ^3.2.36 + vue: ^3.2.37 dependencies: '@astrojs/react': link:../../../../integrations/react '@astrojs/vue': link:../../../../integrations/vue @@ -1850,7 +1850,7 @@ importers: specifiers: astro: workspace:* astro-scripts: workspace:* - esbuild: ^0.14.42 + esbuild: ^0.14.43 dependencies: esbuild: 0.14.43 devDependencies: @@ -1902,7 +1902,7 @@ importers: '@types/node': ^14.18.20 astro: workspace:* astro-scripts: workspace:* - esbuild: ^0.14.42 + esbuild: ^0.14.43 dependencies: '@astrojs/webapi': link:../../webapi esbuild: 0.14.43 @@ -2056,13 +2056,13 @@ importers: packages/integrations/svelte: specifiers: - '@sveltejs/vite-plugin-svelte': ^1.0.0-next.47 + '@sveltejs/vite-plugin-svelte': ^1.0.0-next.48 astro: workspace:* astro-scripts: workspace:* postcss-load-config: ^3.1.4 svelte: ^3.48.0 - svelte-preprocess: ^4.10.6 - vite: ^2.9.9 + svelte-preprocess: ^4.10.7 + vite: ^2.9.10 dependencies: '@sveltejs/vite-plugin-svelte': 1.0.0-next.48_svelte@3.48.0+vite@2.9.10 postcss-load-config: 3.1.4 @@ -2121,8 +2121,8 @@ importers: '@vitejs/plugin-vue': ^2.3.3 astro: workspace:* astro-scripts: workspace:* - vite: ^2.9.9 - vue: ^3.2.36 + vite: ^2.9.10 + vue: ^3.2.37 dependencies: '@vitejs/plugin-vue': 2.3.3_vite@2.9.10+vue@3.2.37 vite: 2.9.10 @@ -2148,7 +2148,7 @@ importers: astro-scripts: workspace:* chai: ^4.3.6 github-slugger: ^1.4.0 - mdast-util-mdx-expression: ^1.2.0 + mdast-util-mdx-expression: ^1.2.1 mdast-util-mdx-jsx: ^1.2.0 mdast-util-to-string: ^3.1.0 micromark-extension-mdx-expression: ^1.0.3 @@ -2175,7 +2175,7 @@ importers: acorn-jsx: 5.3.2_acorn@8.7.1 assert: 2.0.0 github-slugger: 1.4.0 - mdast-util-mdx-expression: 1.2.0 + mdast-util-mdx-expression: 1.2.1 mdast-util-mdx-jsx: 1.2.0 mdast-util-to-string: 3.1.0 micromark-extension-mdx-expression: 1.0.3 @@ -2209,7 +2209,7 @@ importers: packages/telemetry: specifiers: '@types/dlv': ^1.1.2 - '@types/node': ^14.18.20 + '@types/node': ^14.18.21 astro-scripts: workspace:* ci-info: ^3.3.1 debug: ^4.3.4 @@ -2243,7 +2243,7 @@ importers: '@rollup/plugin-typescript': ^8.3.2 '@types/chai': ^4.3.1 '@types/mocha': ^9.1.1 - '@types/node': ^14.18.20 + '@types/node': ^14.18.21 '@ungap/structured-clone': ^0.3.4 abort-controller: ^3.0.0 chai: ^4.3.6 @@ -2253,10 +2253,10 @@ importers: magic-string: ^0.25.9 mocha: ^9.2.2 node-fetch: ^3.2.5 - rollup: ^2.75.5 + rollup: ^2.75.6 rollup-plugin-terser: ^7.0.2 tslib: ^2.4.0 - typescript: ~4.7.2 + typescript: ~4.7.3 urlpattern-polyfill: ^1.0.0-rc5 web-streams-polyfill: ^3.2.1 dependencies: @@ -2288,8 +2288,8 @@ importers: specifiers: '@astrojs/webapi': workspace:* adm-zip: ^0.5.9 - arg: ^5.0.1 - esbuild: ^0.14.42 + arg: ^5.0.2 + esbuild: ^0.14.43 globby: ^12.2.0 kleur: ^4.1.4 svelte: ^3.48.0 @@ -10901,8 +10901,8 @@ packages: - supports-color dev: false - /mdast-util-mdx-expression/1.2.0: - resolution: {integrity: sha512-wb36oi09XxqO9RVqgfD+xo8a7xaNgS+01+k3v0GKW0X0bYbeBmUZz22Z/IJ8SuphVlG+DNgNo9VoEaUJ3PKfJQ==} + /mdast-util-mdx-expression/1.2.1: + resolution: {integrity: sha512-BtQwyalaq6jRjx0pagtuAwGrmzL1yInrfA4EJv7GOoiPOUbR4gr6h65I+G3WTh1/Cag2Eda4ip400Ch6CFmWiA==} dependencies: '@types/estree-jsx': 0.0.1 '@types/hast': 2.3.4 diff --git a/scripts/package.json b/scripts/package.json index 51ae41919..6c125fbd1 100644 --- a/scripts/package.json +++ b/scripts/package.json @@ -10,8 +10,8 @@ "dependencies": { "@astrojs/webapi": "workspace:*", "adm-zip": "^0.5.9", - "arg": "^5.0.1", - "esbuild": "^0.14.42", + "arg": "^5.0.2", + "esbuild": "^0.14.43", "globby": "^12.2.0", "kleur": "^4.1.4", "svelte": "^3.48.0",