From c31436e86b019095de17e15bb1170b06e89fa2d8 Mon Sep 17 00:00:00 2001 From: Matthew Phillips Date: Tue, 10 Aug 2021 08:48:13 -0400 Subject: [PATCH] Update versions --- .changeset/hip-donkeys-fix.md | 5 ----- .changeset/long-actors-march.md | 5 ----- .changeset/spicy-apes-listen.md | 5 ----- skypack/CHANGELOG.md | 6 ++++++ skypack/package.json | 2 +- snowpack/CHANGELOG.md | 9 +++++++++ snowpack/package.json | 4 ++-- 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 +- 29 files changed, 40 insertions(+), 40 deletions(-) delete mode 100644 .changeset/hip-donkeys-fix.md delete mode 100644 .changeset/long-actors-march.md delete mode 100644 .changeset/spicy-apes-listen.md diff --git a/.changeset/hip-donkeys-fix.md b/.changeset/hip-donkeys-fix.md deleted file mode 100644 index 6df66ef7d2..0000000000 --- a/.changeset/hip-donkeys-fix.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'snowpack': patch ---- - -Fix using assets from linked packages diff --git a/.changeset/long-actors-march.md b/.changeset/long-actors-march.md deleted file mode 100644 index c48e90005a..0000000000 --- a/.changeset/long-actors-march.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'snowpack': patch ---- - -Fix issue where multiple onFileChange handlers overwrote each other diff --git a/.changeset/spicy-apes-listen.md b/.changeset/spicy-apes-listen.md deleted file mode 100644 index b8cfd02867..0000000000 --- a/.changeset/spicy-apes-listen.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'skypack': patch ---- - -Fixes a ghost dependency on 'tar' diff --git a/skypack/CHANGELOG.md b/skypack/CHANGELOG.md index 9ff30a3f90..e726d01cab 100644 --- a/skypack/CHANGELOG.md +++ b/skypack/CHANGELOG.md @@ -1,5 +1,11 @@ # skypack +## 0.3.3 + +### Patch Changes + +- 5e84cdd8: Fixes a ghost dependency on 'tar' + ## 0.3.2 ### Patch Changes diff --git a/skypack/package.json b/skypack/package.json index 17a8d228c9..deb0bee0ae 100644 --- a/skypack/package.json +++ b/skypack/package.json @@ -1,6 +1,6 @@ { "name": "skypack", - "version": "0.3.2", + "version": "0.3.3", "description": "The Skypack SDK.", "keywords": [ "skypack", diff --git a/snowpack/CHANGELOG.md b/snowpack/CHANGELOG.md index 55a2f8747c..3ff8b3fd91 100644 --- a/snowpack/CHANGELOG.md +++ b/snowpack/CHANGELOG.md @@ -1,5 +1,14 @@ # snowpack +## 3.8.4 + +### Patch Changes + +- 47d0792f: Fix using assets from linked packages +- 57f545cc: Fix issue where multiple onFileChange handlers overwrote each other +- Updated dependencies [5e84cdd8] + - skypack@0.3.3 + ## 3.8.3 ### Patch Changes diff --git a/snowpack/package.json b/snowpack/package.json index 750760bd48..0f0460017a 100644 --- a/snowpack/package.json +++ b/snowpack/package.json @@ -1,6 +1,6 @@ { "name": "snowpack", - "version": "3.8.3", + "version": "3.8.4", "description": "The ESM-powered frontend build tool. Fast, lightweight, unbundled.", "author": "Fred K. Schott ", "license": "MIT", @@ -83,7 +83,7 @@ "rollup": "~2.37.1", "signal-exit": "^3.0.3", "slash": "~3.0.0", - "skypack": "^0.3.0", + "skypack": "^0.3.3", "source-map": "^0.7.3", "strip-ansi": "^6.0.0", "strip-comments": "^2.0.1", diff --git a/test/build/config-loading-esm-package/package.json b/test/build/config-loading-esm-package/package.json index 7f0ed827bb..002080bb25 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.3" + "snowpack": "^3.8.4" } } diff --git a/test/build/config-loading-mjs/package.json b/test/build/config-loading-mjs/package.json index 4b04a42c6b..ed0683f22d 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.3" + "snowpack": "^3.8.4" } } diff --git a/test/build/entrypoint-ids/package.json b/test/build/entrypoint-ids/package.json index 0384916147..9dafe482ac 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.3" + "snowpack": "^3.8.4" } } diff --git a/test/build/import-assets/package.json b/test/build/import-assets/package.json index fc6e04357e..76962d172b 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.3" + "snowpack": "^3.8.4" } } diff --git a/test/build/package-bootstrap/package.json b/test/build/package-bootstrap/package.json index 332d7046c6..6c85378567 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.3" + "snowpack": "^3.8.4" } } diff --git a/test/build/package-workspace/package.json b/test/build/package-workspace/package.json index b6051aad8b..89595b8ef6 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.3" + "snowpack": "^3.8.4" }, "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 248308308e..f5562ff556 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.3" + "snowpack": "^3.8.4" }, "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 64a86400d3..7a5847ede8 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.3" + "snowpack": "^3.8.4" } } diff --git a/test/build/plugin-run-script/package.json b/test/build/plugin-run-script/package.json index f2c01869cf..b6950529c9 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.3" + "snowpack": "^3.8.4" } } diff --git a/test/build/prepare-external-package/package.json b/test/build/prepare-external-package/package.json index 272c0d9919..fcd760b2e2 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.3" + "snowpack": "^3.8.4" }, "dependencies": { "array-flatten": "^3.0.0" diff --git a/test/esinstall/alias/package.json b/test/esinstall/alias/package.json index 8fa1185908..21759967b8 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.3" + "snowpack": "^3.8.4" } } diff --git a/test/esinstall/config-package-svelte/package.json b/test/esinstall/config-package-svelte/package.json index 943d6f6628..f6bea53182 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.3" + "snowpack": "^3.8.4" } } diff --git a/test/esinstall/dep-list-simple/package.json b/test/esinstall/dep-list-simple/package.json index 9e4805d8ea..3660691142 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.3" + "snowpack": "^3.8.4" } } diff --git a/test/esinstall/error-missing-dep/package.json b/test/esinstall/error-missing-dep/package.json index 5ca744803b..c36d128c66 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.3" + "snowpack": "^3.8.4" } } diff --git a/test/esinstall/exclude-external-packages/package.json b/test/esinstall/exclude-external-packages/package.json index 925102d4d8..41903fb6dc 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.3" + "snowpack": "^3.8.4" } } diff --git a/test/esinstall/exports-only-no-main/package.json b/test/esinstall/exports-only-no-main/package.json index d1a0eb1696..07007fe1b6 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.3" + "snowpack": "^3.8.4" } } diff --git a/test/esinstall/exports-only/package.json b/test/esinstall/exports-only/package.json index d6e5e5ba10..dd0280e251 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.3" + "snowpack": "^3.8.4" } } diff --git a/test/esinstall/import-nothing/package.json b/test/esinstall/import-nothing/package.json index ba6efd6b25..14ea61699a 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.3" + "snowpack": "^3.8.4" } } diff --git a/test/esinstall/named-exports/package.json b/test/esinstall/named-exports/package.json index 8dc3111040..dbe0b27b37 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.3" + "snowpack": "^3.8.4" } } diff --git a/test/esinstall/package-node-fetch/package.json b/test/esinstall/package-node-fetch/package.json index ec990bf11e..0a722919ad 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.3" + "snowpack": "^3.8.4" } } diff --git a/test/esinstall/package-react/package.json b/test/esinstall/package-react/package.json index 348bbad8db..4d13bba632 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.3" + "snowpack": "^3.8.4" } } diff --git a/test/esinstall/rollup/package.json b/test/esinstall/rollup/package.json index 7d2283413f..1aac986da6 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.3" + "snowpack": "^3.8.4" } }