Skip to content

Commit

Permalink
Revert "Version Packages" (#20)
Browse files Browse the repository at this point in the history
Reverts #16

CI Publish is being annoying. Going to try again.
  • Loading branch information
sjc5 committed Sep 10, 2024
1 parent eb84fa0 commit 56d8325
Show file tree
Hide file tree
Showing 16 changed files with 80 additions and 116 deletions.
5 changes: 5 additions & 0 deletions .changeset/curvy-goats-hear.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"hwy": patch
---

rm console log
5 changes: 5 additions & 0 deletions .changeset/hip-sloths-guess.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@hwy-js/build": patch
---

rmv rmSync instance, not really necessary
5 changes: 5 additions & 0 deletions .changeset/lemon-elephants-attend.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"create-hwy": patch
---

update ClientEntryScript to ClientScripts
20 changes: 20 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"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"
]
}
8 changes: 8 additions & 0 deletions .changeset/rotten-boxes-watch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
"create-hwy": patch
"@hwy-js/build": patch
"hwy": patch
"@hwy-js/dev": patch
---

init changesets
24 changes: 24 additions & 0 deletions .changeset/shy-nails-cover.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
"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 <DevLiveRefreshScript />
<ClientEntryScript /> is now <ClientScripts activePathData={activePathData} />. 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.
6 changes: 6 additions & 0 deletions .changeset/three-cooks-fold.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"create-hwy": patch
"@hwy-js/build": patch
---

tweak build step, auto read latest version in create-hwy
6 changes: 3 additions & 3 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
"@hono/node-server": "^1.2.0",
"highlight.js": "^11.8.0",
"hono": "^3.7.5",
"hwy": "0.4.0"
"hwy": "0.4.0-beta.38"
},
"devDependencies": {
"@hwy-js/build": "0.4.0",
"@hwy-js/dev": "0.4.0",
"@hwy-js/build": "0.4.0-beta.38",
"@hwy-js/dev": "0.4.0-beta.38",
"@types/node": "^20.8.3",
"@types/nprogress": "^0.2.1",
"htmx.org": "^1.9.6",
Expand Down
28 changes: 0 additions & 28 deletions packages/build/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,5 @@
# @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 <DevLiveRefreshScript />
<ClientEntryScript /> is now <ClientScripts activePathData={activePathData} />. 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
Expand Down
2 changes: 1 addition & 1 deletion packages/build/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hwy-js/build",
"version": "0.4.0",
"version": "0.4.0-beta.38",
"author": {
"name": "Samuel J. Cook"
},
Expand Down
27 changes: 0 additions & 27 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,5 @@
# 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 <DevLiveRefreshScript />
<ClientEntryScript /> is now <ClientScripts activePathData={activePathData} />. 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
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hwy",
"version": "0.4.0",
"version": "0.4.0-beta.38",
"author": {
"name": "Samuel J. Cook"
},
Expand Down
28 changes: 0 additions & 28 deletions packages/create-hwy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,5 @@
# 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 <DevLiveRefreshScript />
<ClientEntryScript /> is now <ClientScripts activePathData={activePathData} />. 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
Expand Down
2 changes: 1 addition & 1 deletion packages/create-hwy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-hwy",
"version": "0.4.0",
"version": "0.4.0-beta.38",
"author": {
"name": "Samuel J. Cook"
},
Expand Down
26 changes: 0 additions & 26 deletions packages/dev/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,31 +1,5 @@
# @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 <DevLiveRefreshScript />
<ClientEntryScript /> is now <ClientScripts activePathData={activePathData} />. 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
Expand Down
2 changes: 1 addition & 1 deletion packages/dev/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hwy-js/dev",
"version": "0.4.0",
"version": "0.4.0-beta.38",
"author": {
"name": "Samuel J. Cook"
},
Expand Down

0 comments on commit 56d8325

Please sign in to comment.