From 0dd71247db0e5d431bd619552b4839265bbbf655 Mon Sep 17 00:00:00 2001 From: Matthew Phillips Date: Tue, 13 Jul 2021 10:58:38 -0400 Subject: [PATCH] 3.8.2 --- .changeset/curly-dancers-double.md | 5 ----- snowpack/CHANGELOG.md | 6 ++++++ snowpack/package.json | 2 +- test/build/config-loading-esm-package/package.json | 2 +- test/build/config-loading-mjs/package.json | 2 +- test/build/entrypoint-ids/package.json | 2 +- test/build/import-assets/package.json | 2 +- test/build/package-bootstrap/package.json | 2 +- test/build/package-workspace/package.json | 2 +- test/build/plugin-build-script/package.json | 2 +- test/build/plugin-hook-optimize/package.json | 2 +- test/build/plugin-run-script/package.json | 2 +- test/build/prepare-external-package/package.json | 2 +- test/esinstall/alias/package.json | 2 +- test/esinstall/config-package-svelte/package.json | 2 +- test/esinstall/dep-list-simple/package.json | 2 +- test/esinstall/error-missing-dep/package.json | 2 +- test/esinstall/exclude-external-packages/package.json | 2 +- test/esinstall/exports-only-no-main/package.json | 2 +- test/esinstall/exports-only/package.json | 2 +- test/esinstall/import-nothing/package.json | 2 +- test/esinstall/named-exports/package.json | 2 +- test/esinstall/package-node-fetch/package.json | 2 +- test/esinstall/package-react/package.json | 2 +- test/esinstall/rollup/package.json | 2 +- 25 files changed, 29 insertions(+), 28 deletions(-) delete mode 100644 .changeset/curly-dancers-double.md diff --git a/.changeset/curly-dancers-double.md b/.changeset/curly-dancers-double.md deleted file mode 100644 index 401ee21fa0..0000000000 --- a/.changeset/curly-dancers-double.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'snowpack': patch ---- - -Fixes scanning of dynamic imports on packages diff --git a/snowpack/CHANGELOG.md b/snowpack/CHANGELOG.md index bd54c5ea44..ce7f0aaff5 100644 --- a/snowpack/CHANGELOG.md +++ b/snowpack/CHANGELOG.md @@ -1,5 +1,11 @@ # snowpack +## 3.8.2 + +### Patch Changes + +- c4a55550: Fixes scanning of dynamic imports on packages + ## 3.8.1 ### Patch Changes diff --git a/snowpack/package.json b/snowpack/package.json index f893cc4ddc..0c0d59b0ad 100644 --- a/snowpack/package.json +++ b/snowpack/package.json @@ -1,6 +1,6 @@ { "name": "snowpack", - "version": "3.8.1", + "version": "3.8.2", "description": "The ESM-powered frontend build tool. Fast, lightweight, unbundled.", "author": "Fred K. Schott ", "license": "MIT", diff --git a/test/build/config-loading-esm-package/package.json b/test/build/config-loading-esm-package/package.json index 1e5dd3a105..6135dff01f 100644 --- a/test/build/config-loading-esm-package/package.json +++ b/test/build/config-loading-esm-package/package.json @@ -7,6 +7,6 @@ "testbuild": "snowpack build" }, "dependencies": { - "snowpack": "^3.8.1" + "snowpack": "^3.8.2" } } diff --git a/test/build/config-loading-mjs/package.json b/test/build/config-loading-mjs/package.json index 5c11365f8f..b8e9f9a1f0 100644 --- a/test/build/config-loading-mjs/package.json +++ b/test/build/config-loading-mjs/package.json @@ -6,6 +6,6 @@ "testbuild": "snowpack build" }, "dependencies": { - "snowpack": "^3.8.1" + "snowpack": "^3.8.2" } } diff --git a/test/build/entrypoint-ids/package.json b/test/build/entrypoint-ids/package.json index 0c459c5ff6..ff0fd87a03 100644 --- a/test/build/entrypoint-ids/package.json +++ b/test/build/entrypoint-ids/package.json @@ -16,6 +16,6 @@ "ansi-styles": "*" }, "devDependencies": { - "snowpack": "^3.8.1" + "snowpack": "^3.8.2" } } diff --git a/test/build/import-assets/package.json b/test/build/import-assets/package.json index 90ef726709..0f44f300ac 100644 --- a/test/build/import-assets/package.json +++ b/test/build/import-assets/package.json @@ -8,6 +8,6 @@ "testbuild": "snowpack build" }, "devDependencies": { - "snowpack": "^3.8.1" + "snowpack": "^3.8.2" } } diff --git a/test/build/package-bootstrap/package.json b/test/build/package-bootstrap/package.json index 4477130875..9f252113cf 100644 --- a/test/build/package-bootstrap/package.json +++ b/test/build/package-bootstrap/package.json @@ -15,6 +15,6 @@ "bootstrap": "^4.5.2" }, "devDependencies": { - "snowpack": "^3.8.1" + "snowpack": "^3.8.2" } } diff --git a/test/build/package-workspace/package.json b/test/build/package-workspace/package.json index 2e7e931867..27a5407e5c 100644 --- a/test/build/package-workspace/package.json +++ b/test/build/package-workspace/package.json @@ -7,7 +7,7 @@ "testbuild": "snowpack build" }, "devDependencies": { - "snowpack": "^3.8.1" + "snowpack": "^3.8.2" }, "dependencies": { "test-workspace-component": "^1.0.0" diff --git a/test/build/plugin-build-script/package.json b/test/build/plugin-build-script/package.json index fc435ae53a..9c3d8ab814 100644 --- a/test/build/plugin-build-script/package.json +++ b/test/build/plugin-build-script/package.json @@ -9,7 +9,7 @@ "devDependencies": { "@babel/cli": "^7.10.5", "@snowpack/plugin-build-script": "^2.0.0", - "snowpack": "^3.8.1" + "snowpack": "^3.8.2" }, "dependencies": { "@babel/preset-typescript": "^7.13.0" diff --git a/test/build/plugin-hook-optimize/package.json b/test/build/plugin-hook-optimize/package.json index 7a0343718f..b386415a8b 100644 --- a/test/build/plugin-hook-optimize/package.json +++ b/test/build/plugin-hook-optimize/package.json @@ -9,6 +9,6 @@ }, "devDependencies": { "@snowpack/plugin-optimize": "^0.2.0", - "snowpack": "^3.8.1" + "snowpack": "^3.8.2" } } diff --git a/test/build/plugin-run-script/package.json b/test/build/plugin-run-script/package.json index 43e9c2c259..1b82d556c7 100644 --- a/test/build/plugin-run-script/package.json +++ b/test/build/plugin-run-script/package.json @@ -9,6 +9,6 @@ "devDependencies": { "@snowpack/plugin-run-script": "^2.0.0", "sass": "^1.26.10", - "snowpack": "^3.8.1" + "snowpack": "^3.8.2" } } diff --git a/test/build/prepare-external-package/package.json b/test/build/prepare-external-package/package.json index 76a446327a..47875708c8 100644 --- a/test/build/prepare-external-package/package.json +++ b/test/build/prepare-external-package/package.json @@ -19,7 +19,7 @@ } }, "devDependencies": { - "snowpack": "^3.8.1" + "snowpack": "^3.8.2" }, "dependencies": { "array-flatten": "^3.0.0" diff --git a/test/esinstall/alias/package.json b/test/esinstall/alias/package.json index a7ebe8c7b7..e0b54b509d 100644 --- a/test/esinstall/alias/package.json +++ b/test/esinstall/alias/package.json @@ -9,6 +9,6 @@ "vue-currency-input": "^1.21.0" }, "devDependencies": { - "snowpack": "^3.8.1" + "snowpack": "^3.8.2" } } diff --git a/test/esinstall/config-package-svelte/package.json b/test/esinstall/config-package-svelte/package.json index a773ffb707..8e3b417d18 100644 --- a/test/esinstall/config-package-svelte/package.json +++ b/test/esinstall/config-package-svelte/package.json @@ -7,6 +7,6 @@ "simple-svelte-autocomplete": "1.2.4" }, "devDependencies": { - "snowpack": "^3.8.1" + "snowpack": "^3.8.2" } } diff --git a/test/esinstall/dep-list-simple/package.json b/test/esinstall/dep-list-simple/package.json index 9e46e282e8..92cea68e6b 100644 --- a/test/esinstall/dep-list-simple/package.json +++ b/test/esinstall/dep-list-simple/package.json @@ -4,6 +4,6 @@ "name": "@snowpack/test-dep-list-simple", "dependencies": { "async": "3.1.0", - "snowpack": "^3.8.1" + "snowpack": "^3.8.2" } } diff --git a/test/esinstall/error-missing-dep/package.json b/test/esinstall/error-missing-dep/package.json index 252d573322..ed9049d4db 100644 --- a/test/esinstall/error-missing-dep/package.json +++ b/test/esinstall/error-missing-dep/package.json @@ -3,6 +3,6 @@ "version": "1.0.1", "name": "@snowpack/test-error-missing-dep", "devDependencies": { - "snowpack": "^3.8.1" + "snowpack": "^3.8.2" } } diff --git a/test/esinstall/exclude-external-packages/package.json b/test/esinstall/exclude-external-packages/package.json index 2b0be4b542..5ba544be86 100644 --- a/test/esinstall/exclude-external-packages/package.json +++ b/test/esinstall/exclude-external-packages/package.json @@ -7,6 +7,6 @@ "react-dom": "17.0.1" }, "devDependencies": { - "snowpack": "^3.8.1" + "snowpack": "^3.8.2" } } diff --git a/test/esinstall/exports-only-no-main/package.json b/test/esinstall/exports-only-no-main/package.json index 6469842f58..9d59e622bc 100644 --- a/test/esinstall/exports-only-no-main/package.json +++ b/test/esinstall/exports-only-no-main/package.json @@ -10,6 +10,6 @@ "exports-only-no-main": "file:./pkg" }, "devDependencies": { - "snowpack": "^3.8.1" + "snowpack": "^3.8.2" } } diff --git a/test/esinstall/exports-only/package.json b/test/esinstall/exports-only/package.json index 7e4f4f43b1..53c634ee05 100644 --- a/test/esinstall/exports-only/package.json +++ b/test/esinstall/exports-only/package.json @@ -10,6 +10,6 @@ "exports-only": "file:./pkg" }, "devDependencies": { - "snowpack": "^3.8.1" + "snowpack": "^3.8.2" } } diff --git a/test/esinstall/import-nothing/package.json b/test/esinstall/import-nothing/package.json index 938829ff09..86affa8b5c 100644 --- a/test/esinstall/import-nothing/package.json +++ b/test/esinstall/import-nothing/package.json @@ -3,6 +3,6 @@ "version": "1.0.1", "name": "@snowpack/test-import-nothing", "devDependencies": { - "snowpack": "^3.8.1" + "snowpack": "^3.8.2" } } diff --git a/test/esinstall/named-exports/package.json b/test/esinstall/named-exports/package.json index c038417149..e28fdd40ed 100644 --- a/test/esinstall/named-exports/package.json +++ b/test/esinstall/named-exports/package.json @@ -13,6 +13,6 @@ "umd-named-exports": "file:./packages/umd-named-exports" }, "devDependencies": { - "snowpack": "^3.8.1" + "snowpack": "^3.8.2" } } diff --git a/test/esinstall/package-node-fetch/package.json b/test/esinstall/package-node-fetch/package.json index 3cc06f2aad..6dcef25ff6 100644 --- a/test/esinstall/package-node-fetch/package.json +++ b/test/esinstall/package-node-fetch/package.json @@ -17,6 +17,6 @@ "dep-node-fetch-mock-pkg": "file:./packages/dep-node-fetch-mock-pkg" }, "devDependencies": { - "snowpack": "^3.8.1" + "snowpack": "^3.8.2" } } diff --git a/test/esinstall/package-react/package.json b/test/esinstall/package-react/package.json index 233c28ec7d..d2cb43bc3d 100644 --- a/test/esinstall/package-react/package.json +++ b/test/esinstall/package-react/package.json @@ -8,6 +8,6 @@ "react-dom": "16.13.1" }, "devDependencies": { - "snowpack": "^3.8.1" + "snowpack": "^3.8.2" } } diff --git a/test/esinstall/rollup/package.json b/test/esinstall/rollup/package.json index f902403082..6ba2d80337 100644 --- a/test/esinstall/rollup/package.json +++ b/test/esinstall/rollup/package.json @@ -11,6 +11,6 @@ "svelte-routing": "^1.4.0" }, "devDependencies": { - "snowpack": "^3.8.1" + "snowpack": "^3.8.2" } }