From 0e6687939fb1c359d9676e4786cd38ad570c17d6 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Sat, 21 Oct 2023 18:26:05 -0500
Subject: [PATCH] Version Packages (#23)
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to main, this PR will
be updated.
# Releases
## @hwy-js/build@0.4.0
### Minor Changes
- 625ee49: First off, huge shoutout to @jharrell for his debugging and
research assistance on this PR related to adding Cloudflare Pages
support! Thank you!
- Cloudflare Pages is now supported! Closes #6.
- Added changesets. Closes #14.
- Adds a `hwy.config.ts` / `hwy.config.js` file to the root of your
project for setting up dev settings and deployment target, and probably
other things in the future. As annoying as config files are, this
simplifies a lot of things and is not too much to ask for a framework.
- Removes a lot of complexity / variance in build commands and deploy
target hacks, as now we can just read the deployment target from the Hwy
config and handle everything in Hwy's centralized build step.
- Adds a new `@hwy-js/build` package, splitting up the live refresh
stuff (stays in `@hwy-js/dev`) from the build stuff.
- In your `src/main.tsx` file:
- `{hwyDev?.DevLiveRefreshScript()}` is now just ``
- `` is now ``. This is to enable the new client
scripts functionality mentioned below.
- Added an option to ship client-side JS (including from TS files if you
want) by adding a sibling `page-name.client.ts` or `page-name.client.js`
file to your page. This becomes basically global JS for that page, and
anything imported will be bundled into that page's script, which is
built into the public folder and referenced in the document head when
you visit that page. This will be better documented later. Closes #15.
### Patch Changes
- e4e514a: rmv rmSync instance, not really necessary
- e4e514a: init changesets
- e4e514a: tweak build step, auto read latest version in create-hwy
## hwy@0.4.0
### Minor Changes
- 625ee49: First off, huge shoutout to @jharrell for his debugging and
research assistance on this PR related to adding Cloudflare Pages
support! Thank you!
- Cloudflare Pages is now supported! Closes #6.
- Added changesets. Closes #14.
- Adds a `hwy.config.ts` / `hwy.config.js` file to the root of your
project for setting up dev settings and deployment target, and probably
other things in the future. As annoying as config files are, this
simplifies a lot of things and is not too much to ask for a framework.
- Removes a lot of complexity / variance in build commands and deploy
target hacks, as now we can just read the deployment target from the Hwy
config and handle everything in Hwy's centralized build step.
- Adds a new `@hwy-js/build` package, splitting up the live refresh
stuff (stays in `@hwy-js/dev`) from the build stuff.
- In your `src/main.tsx` file:
- `{hwyDev?.DevLiveRefreshScript()}` is now just ``
- `` is now ``. This is to enable the new client
scripts functionality mentioned below.
- Added an option to ship client-side JS (including from TS files if you
want) by adding a sibling `page-name.client.ts` or `page-name.client.js`
file to your page. This becomes basically global JS for that page, and
anything imported will be bundled into that page's script, which is
built into the public folder and referenced in the document head when
you visit that page. This will be better documented later. Closes #15.
### Patch Changes
- e4e514a: rm console log
- e4e514a: init changesets
## create-hwy@0.4.0
### Minor Changes
- 625ee49: First off, huge shoutout to @jharrell for his debugging and
research assistance on this PR related to adding Cloudflare Pages
support! Thank you!
- Cloudflare Pages is now supported! Closes #6.
- Added changesets. Closes #14.
- Adds a `hwy.config.ts` / `hwy.config.js` file to the root of your
project for setting up dev settings and deployment target, and probably
other things in the future. As annoying as config files are, this
simplifies a lot of things and is not too much to ask for a framework.
- Removes a lot of complexity / variance in build commands and deploy
target hacks, as now we can just read the deployment target from the Hwy
config and handle everything in Hwy's centralized build step.
- Adds a new `@hwy-js/build` package, splitting up the live refresh
stuff (stays in `@hwy-js/dev`) from the build stuff.
- In your `src/main.tsx` file:
- `{hwyDev?.DevLiveRefreshScript()}` is now just ``
- `` is now ``. This is to enable the new client
scripts functionality mentioned below.
- Added an option to ship client-side JS (including from TS files if you
want) by adding a sibling `page-name.client.ts` or `page-name.client.js`
file to your page. This becomes basically global JS for that page, and
anything imported will be bundled into that page's script, which is
built into the public folder and referenced in the document head when
you visit that page. This will be better documented later. Closes #15.
### Patch Changes
- e4e514a: update ClientEntryScript to ClientScripts
- e4e514a: init changesets
- e4e514a: tweak build step, auto read latest version in create-hwy
## @hwy-js/dev@0.4.0
### Minor Changes
- 625ee49: First off, huge shoutout to @jharrell for his debugging and
research assistance on this PR related to adding Cloudflare Pages
support! Thank you!
- Cloudflare Pages is now supported! Closes #6.
- Added changesets. Closes #14.
- Adds a `hwy.config.ts` / `hwy.config.js` file to the root of your
project for setting up dev settings and deployment target, and probably
other things in the future. As annoying as config files are, this
simplifies a lot of things and is not too much to ask for a framework.
- Removes a lot of complexity / variance in build commands and deploy
target hacks, as now we can just read the deployment target from the Hwy
config and handle everything in Hwy's centralized build step.
- Adds a new `@hwy-js/build` package, splitting up the live refresh
stuff (stays in `@hwy-js/dev`) from the build stuff.
- In your `src/main.tsx` file:
- `{hwyDev?.DevLiveRefreshScript()}` is now just ``
- `` is now ``. This is to enable the new client
scripts functionality mentioned below.
- Added an option to ship client-side JS (including from TS files if you
want) by adding a sibling `page-name.client.ts` or `page-name.client.js`
file to your page. This becomes basically global JS for that page, and
anything imported will be bundled into that page's script, which is
built into the public folder and referenced in the document head when
you visit that page. This will be better documented later. Closes #15.
### Patch Changes
- e4e514a: init changesets
Co-authored-by: github-actions[bot]
---
.changeset/curvy-goats-hear.md | 5 -----
.changeset/heavy-tips-camp.md | 25 -------------------------
.changeset/hip-sloths-guess.md | 5 -----
.changeset/lemon-elephants-attend.md | 5 -----
.changeset/pre.json | 20 --------------------
.changeset/rotten-boxes-watch.md | 8 --------
.changeset/three-cooks-fold.md | 6 ------
packages/build/CHANGELOG.md | 24 ++++++++++++++++++++++++
packages/build/package.json | 2 +-
packages/core/CHANGELOG.md | 23 +++++++++++++++++++++++
packages/core/package.json | 2 +-
packages/create-hwy/CHANGELOG.md | 24 ++++++++++++++++++++++++
packages/create-hwy/package.json | 2 +-
packages/dev/CHANGELOG.md | 22 ++++++++++++++++++++++
packages/dev/package.json | 2 +-
15 files changed, 97 insertions(+), 78 deletions(-)
delete mode 100644 .changeset/curvy-goats-hear.md
delete mode 100644 .changeset/heavy-tips-camp.md
delete mode 100644 .changeset/hip-sloths-guess.md
delete mode 100644 .changeset/lemon-elephants-attend.md
delete mode 100644 .changeset/pre.json
delete mode 100644 .changeset/rotten-boxes-watch.md
delete mode 100644 .changeset/three-cooks-fold.md
diff --git a/.changeset/curvy-goats-hear.md b/.changeset/curvy-goats-hear.md
deleted file mode 100644
index 8235e60c..00000000
--- a/.changeset/curvy-goats-hear.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"hwy": patch
----
-
-rm console log
diff --git a/.changeset/heavy-tips-camp.md b/.changeset/heavy-tips-camp.md
deleted file mode 100644
index 88dbb191..00000000
--- a/.changeset/heavy-tips-camp.md
+++ /dev/null
@@ -1,25 +0,0 @@
----
-"@hwy-js/build": minor
-"hwy": minor
-"create-hwy": minor
-"@hwy-js/dev": minor
----
-
-First off, huge shoutout to @jharrell for his debugging and research assistance on this PR related to adding Cloudflare Pages support! Thank you!
-
-- Cloudflare Pages is now supported! Closes #6.
-
-- Added changesets. Closes #14.
-
-- Adds a `hwy.config.ts` / `hwy.config.js` file to the root of your project for setting up dev settings and deployment target, and probably other things in the future. As annoying as config files are, this simplifies a lot of things and is not too much to ask for a framework.
-
-- Removes a lot of complexity / variance in build commands and deploy target hacks, as now we can just read the deployment target from the Hwy config and handle everything in Hwy's centralized build step.
-
-- Adds a new `@hwy-js/build` package, splitting up the live refresh stuff (stays in `@hwy-js/dev`) from the build stuff.
-
-- In your `src/main.tsx` file:
-
- - `{hwyDev?.DevLiveRefreshScript()}` is now just ``
- - `` is now ``. This is to enable the new client scripts functionality mentioned below.
-
-- Added an option to ship client-side JS (including from TS files if you want) by adding a sibling `page-name.client.ts` or `page-name.client.js` file to your page. This becomes basically global JS for that page, and anything imported will be bundled into that page's script, which is built into the public folder and referenced in the document head when you visit that page. This will be better documented later. Closes #15.
diff --git a/.changeset/hip-sloths-guess.md b/.changeset/hip-sloths-guess.md
deleted file mode 100644
index 17fd9698..00000000
--- a/.changeset/hip-sloths-guess.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"@hwy-js/build": patch
----
-
-rmv rmSync instance, not really necessary
diff --git a/.changeset/lemon-elephants-attend.md b/.changeset/lemon-elephants-attend.md
deleted file mode 100644
index 09d8bb97..00000000
--- a/.changeset/lemon-elephants-attend.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"create-hwy": patch
----
-
-update ClientEntryScript to ClientScripts
diff --git a/.changeset/pre.json b/.changeset/pre.json
deleted file mode 100644
index 6a4ae8b2..00000000
--- a/.changeset/pre.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "mode": "exit",
- "tag": "beta",
- "initialVersions": {
- "docs": "0.0.0",
- "@hwy-js/build": "0.4.0-beta.37",
- "hwy": "0.4.0-beta.37",
- "create-hwy": "0.4.0-beta.37",
- "@hwy-js/dev": "0.4.0-beta.37",
- "cf-pages-tester": "0.0.0",
- "tester": "0.0.0"
- },
- "changesets": [
- "curvy-goats-hear",
- "hip-sloths-guess",
- "lemon-elephants-attend",
- "rotten-boxes-watch",
- "three-cooks-fold"
- ]
-}
diff --git a/.changeset/rotten-boxes-watch.md b/.changeset/rotten-boxes-watch.md
deleted file mode 100644
index 54888f36..00000000
--- a/.changeset/rotten-boxes-watch.md
+++ /dev/null
@@ -1,8 +0,0 @@
----
-"create-hwy": patch
-"@hwy-js/build": patch
-"hwy": patch
-"@hwy-js/dev": patch
----
-
-init changesets
diff --git a/.changeset/three-cooks-fold.md b/.changeset/three-cooks-fold.md
deleted file mode 100644
index 3b871117..00000000
--- a/.changeset/three-cooks-fold.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-"create-hwy": patch
-"@hwy-js/build": patch
----
-
-tweak build step, auto read latest version in create-hwy
diff --git a/packages/build/CHANGELOG.md b/packages/build/CHANGELOG.md
index fff283ea..00b079c1 100644
--- a/packages/build/CHANGELOG.md
+++ b/packages/build/CHANGELOG.md
@@ -1,5 +1,29 @@
# @hwy-js/build
+## 0.4.0
+
+### Minor Changes
+
+- 625ee49: First off, huge shoutout to @jharrell for his debugging and research assistance on this PR related to adding Cloudflare Pages support! Thank you!
+
+ - Cloudflare Pages is now supported! Closes #6.
+ - Added changesets. Closes #14.
+ - Adds a `hwy.config.ts` / `hwy.config.js` file to the root of your project for setting up dev settings and deployment target, and probably other things in the future. As annoying as config files are, this simplifies a lot of things and is not too much to ask for a framework.
+ - Removes a lot of complexity / variance in build commands and deploy target hacks, as now we can just read the deployment target from the Hwy config and handle everything in Hwy's centralized build step.
+ - Adds a new `@hwy-js/build` package, splitting up the live refresh stuff (stays in `@hwy-js/dev`) from the build stuff.
+ - In your `src/main.tsx` file:
+
+ - `{hwyDev?.DevLiveRefreshScript()}` is now just ``
+ - `` is now ``. This is to enable the new client scripts functionality mentioned below.
+
+ - Added an option to ship client-side JS (including from TS files if you want) by adding a sibling `page-name.client.ts` or `page-name.client.js` file to your page. This becomes basically global JS for that page, and anything imported will be bundled into that page's script, which is built into the public folder and referenced in the document head when you visit that page. This will be better documented later. Closes #15.
+
+### Patch Changes
+
+- e4e514a: rmv rmSync instance, not really necessary
+- e4e514a: init changesets
+- e4e514a: tweak build step, auto read latest version in create-hwy
+
## 0.4.0-beta.38
## 0.4.0-beta.37
diff --git a/packages/build/package.json b/packages/build/package.json
index deb184b8..698db83e 100644
--- a/packages/build/package.json
+++ b/packages/build/package.json
@@ -1,6 +1,6 @@
{
"name": "@hwy-js/build",
- "version": "0.4.0-beta.38",
+ "version": "0.4.0",
"author": {
"name": "Samuel J. Cook"
},
diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md
index 6e9f5032..e4ae843b 100644
--- a/packages/core/CHANGELOG.md
+++ b/packages/core/CHANGELOG.md
@@ -1,5 +1,28 @@
# hwy
+## 0.4.0
+
+### Minor Changes
+
+- 625ee49: First off, huge shoutout to @jharrell for his debugging and research assistance on this PR related to adding Cloudflare Pages support! Thank you!
+
+ - Cloudflare Pages is now supported! Closes #6.
+ - Added changesets. Closes #14.
+ - Adds a `hwy.config.ts` / `hwy.config.js` file to the root of your project for setting up dev settings and deployment target, and probably other things in the future. As annoying as config files are, this simplifies a lot of things and is not too much to ask for a framework.
+ - Removes a lot of complexity / variance in build commands and deploy target hacks, as now we can just read the deployment target from the Hwy config and handle everything in Hwy's centralized build step.
+ - Adds a new `@hwy-js/build` package, splitting up the live refresh stuff (stays in `@hwy-js/dev`) from the build stuff.
+ - In your `src/main.tsx` file:
+
+ - `{hwyDev?.DevLiveRefreshScript()}` is now just ``
+ - `` is now ``. This is to enable the new client scripts functionality mentioned below.
+
+ - Added an option to ship client-side JS (including from TS files if you want) by adding a sibling `page-name.client.ts` or `page-name.client.js` file to your page. This becomes basically global JS for that page, and anything imported will be bundled into that page's script, which is built into the public folder and referenced in the document head when you visit that page. This will be better documented later. Closes #15.
+
+### Patch Changes
+
+- e4e514a: rm console log
+- e4e514a: init changesets
+
## 0.4.0-beta.38
## 0.4.0-beta.37
diff --git a/packages/core/package.json b/packages/core/package.json
index 44bc2883..6033a240 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "hwy",
- "version": "0.4.0-beta.38",
+ "version": "0.4.0",
"author": {
"name": "Samuel J. Cook"
},
diff --git a/packages/create-hwy/CHANGELOG.md b/packages/create-hwy/CHANGELOG.md
index c1a5e4ac..9d7851cb 100644
--- a/packages/create-hwy/CHANGELOG.md
+++ b/packages/create-hwy/CHANGELOG.md
@@ -1,5 +1,29 @@
# create-hwy
+## 0.4.0
+
+### Minor Changes
+
+- 625ee49: First off, huge shoutout to @jharrell for his debugging and research assistance on this PR related to adding Cloudflare Pages support! Thank you!
+
+ - Cloudflare Pages is now supported! Closes #6.
+ - Added changesets. Closes #14.
+ - Adds a `hwy.config.ts` / `hwy.config.js` file to the root of your project for setting up dev settings and deployment target, and probably other things in the future. As annoying as config files are, this simplifies a lot of things and is not too much to ask for a framework.
+ - Removes a lot of complexity / variance in build commands and deploy target hacks, as now we can just read the deployment target from the Hwy config and handle everything in Hwy's centralized build step.
+ - Adds a new `@hwy-js/build` package, splitting up the live refresh stuff (stays in `@hwy-js/dev`) from the build stuff.
+ - In your `src/main.tsx` file:
+
+ - `{hwyDev?.DevLiveRefreshScript()}` is now just ``
+ - `` is now ``. This is to enable the new client scripts functionality mentioned below.
+
+ - Added an option to ship client-side JS (including from TS files if you want) by adding a sibling `page-name.client.ts` or `page-name.client.js` file to your page. This becomes basically global JS for that page, and anything imported will be bundled into that page's script, which is built into the public folder and referenced in the document head when you visit that page. This will be better documented later. Closes #15.
+
+### Patch Changes
+
+- e4e514a: update ClientEntryScript to ClientScripts
+- e4e514a: init changesets
+- e4e514a: tweak build step, auto read latest version in create-hwy
+
## 0.4.0-beta.38
### Patch Changes
diff --git a/packages/create-hwy/package.json b/packages/create-hwy/package.json
index f568cef1..f053b4a5 100644
--- a/packages/create-hwy/package.json
+++ b/packages/create-hwy/package.json
@@ -1,6 +1,6 @@
{
"name": "create-hwy",
- "version": "0.4.0-beta.38",
+ "version": "0.4.0",
"author": {
"name": "Samuel J. Cook"
},
diff --git a/packages/dev/CHANGELOG.md b/packages/dev/CHANGELOG.md
index f05d86b0..0ba1a934 100644
--- a/packages/dev/CHANGELOG.md
+++ b/packages/dev/CHANGELOG.md
@@ -1,5 +1,27 @@
# @hwy-js/dev
+## 0.4.0
+
+### Minor Changes
+
+- 625ee49: First off, huge shoutout to @jharrell for his debugging and research assistance on this PR related to adding Cloudflare Pages support! Thank you!
+
+ - Cloudflare Pages is now supported! Closes #6.
+ - Added changesets. Closes #14.
+ - Adds a `hwy.config.ts` / `hwy.config.js` file to the root of your project for setting up dev settings and deployment target, and probably other things in the future. As annoying as config files are, this simplifies a lot of things and is not too much to ask for a framework.
+ - Removes a lot of complexity / variance in build commands and deploy target hacks, as now we can just read the deployment target from the Hwy config and handle everything in Hwy's centralized build step.
+ - Adds a new `@hwy-js/build` package, splitting up the live refresh stuff (stays in `@hwy-js/dev`) from the build stuff.
+ - In your `src/main.tsx` file:
+
+ - `{hwyDev?.DevLiveRefreshScript()}` is now just ``
+ - `` is now ``. This is to enable the new client scripts functionality mentioned below.
+
+ - Added an option to ship client-side JS (including from TS files if you want) by adding a sibling `page-name.client.ts` or `page-name.client.js` file to your page. This becomes basically global JS for that page, and anything imported will be bundled into that page's script, which is built into the public folder and referenced in the document head when you visit that page. This will be better documented later. Closes #15.
+
+### Patch Changes
+
+- e4e514a: init changesets
+
## 0.4.0-beta.38
## 0.4.0-beta.37
diff --git a/packages/dev/package.json b/packages/dev/package.json
index 94188851..3fe9b5e5 100644
--- a/packages/dev/package.json
+++ b/packages/dev/package.json
@@ -1,6 +1,6 @@
{
"name": "@hwy-js/dev",
- "version": "0.4.0-beta.38",
+ "version": "0.4.0",
"author": {
"name": "Samuel J. Cook"
},