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/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/shy-nails-cover.md b/.changeset/shy-nails-cover.md deleted file mode 100644 index d8a22895..00000000 --- a/.changeset/shy-nails-cover.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -"create-hwy": minor -"@hwy-js/build": minor -"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 issue #6. - -Added changesets. Closes issue #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 issue #15. 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/docs/package.json b/docs/package.json index 3fa478ea..552ccfa5 100644 --- a/docs/package.json +++ b/docs/package.json @@ -13,11 +13,11 @@ "@hono/node-server": "^1.2.0", "highlight.js": "^11.8.0", "hono": "^3.7.5", - "hwy": "0.4.0-beta.38" + "hwy": "0.4.0" }, "devDependencies": { - "@hwy-js/build": "0.4.0-beta.38", - "@hwy-js/dev": "0.4.0-beta.38", + "@hwy-js/build": "0.4.0", + "@hwy-js/dev": "0.4.0", "@types/node": "^20.8.3", "@types/nprogress": "^0.2.1", "htmx.org": "^1.9.6", diff --git a/packages/build/CHANGELOG.md b/packages/build/CHANGELOG.md index fff283ea..d0c29dda 100644 --- a/packages/build/CHANGELOG.md +++ b/packages/build/CHANGELOG.md @@ -1,5 +1,33 @@ # @hwy-js/build +## 0.4.0 + +### Minor Changes + +- 772708e: 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 issue #6. + + Added changesets. Closes issue #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 issue #15. + +### Patch Changes + +- 772708e: rmv rmSync instance, not really necessary +- 772708e: init changesets +- 772708e: 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..e1c4294c 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,32 @@ # hwy +## 0.4.0 + +### Minor Changes + +- 772708e: 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 issue #6. + + Added changesets. Closes issue #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 issue #15. + +### Patch Changes + +- 772708e: rm console log +- 772708e: 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..9bdd66fc 100644 --- a/packages/create-hwy/CHANGELOG.md +++ b/packages/create-hwy/CHANGELOG.md @@ -1,5 +1,33 @@ # create-hwy +## 0.4.0 + +### Minor Changes + +- 772708e: 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 issue #6. + + Added changesets. Closes issue #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 issue #15. + +### Patch Changes + +- 772708e: update ClientEntryScript to ClientScripts +- 772708e: init changesets +- 772708e: 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..4d2eab20 100644 --- a/packages/dev/CHANGELOG.md +++ b/packages/dev/CHANGELOG.md @@ -1,5 +1,31 @@ # @hwy-js/dev +## 0.4.0 + +### Minor Changes + +- 772708e: 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 issue #6. + + Added changesets. Closes issue #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 issue #15. + +### Patch Changes + +- 772708e: 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" },