Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sjc5 committed Oct 24, 2023
1 parent 8921292 commit d483cd6
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 188 deletions.
2 changes: 1 addition & 1 deletion docs/src/components/dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function DialogModal({
<dialog
onclick="event.target==this && this.close()"
style={{
padding: String(0),
padding: 0,
border: "none",
background: "transparent",
}}
Expand Down
44 changes: 0 additions & 44 deletions packages/build/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,49 +1,5 @@
# @hwy-js/build

## 0.4.2-beta.6

### Patch Changes

- clean up types

## 0.4.2-beta.5

### Patch Changes

- update types

## 0.4.2-beta.4

### Patch Changes

- Add style types

## 0.4.2-beta.3

### Patch Changes

- Update types

## 0.4.2-beta.2

### Patch Changes

- Update JSX types

## 0.4.2-beta.1

### Patch Changes

- Using typescript built-ins instead of Preact types, and added some type munging and fixes to match Hwy's use cases

## 0.4.2-beta.0

### Patch Changes

- 1. Update all dependencies.
2. Temporarily use Preact's `JSX.IntrinsicElements` types until Hono is updated to include its own `JSX.IntrinsicElements` types for standard HTML elements. This is done through `@hwy-js/dev` and requires Hwy projects to have `@hwy-js/dev` in the types array of their `tsconfig.json` files in order to use these intrisic element types.
3. Update `create-hwy` to use the new `@hwy-js/dev` types in generated project's `tsconfig.json`.

## 0.4.1

## 0.4.0
Expand Down
44 changes: 0 additions & 44 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,49 +1,5 @@
# hwy

## 0.4.2-beta.6

### Patch Changes

- clean up types

## 0.4.2-beta.5

### Patch Changes

- update types

## 0.4.2-beta.4

### Patch Changes

- Add style types

## 0.4.2-beta.3

### Patch Changes

- Update types

## 0.4.2-beta.2

### Patch Changes

- Update JSX types

## 0.4.2-beta.1

### Patch Changes

- Using typescript built-ins instead of Preact types, and added some type munging and fixes to match Hwy's use cases

## 0.4.2-beta.0

### Patch Changes

- 1. Update all dependencies.
2. Temporarily use Preact's `JSX.IntrinsicElements` types until Hono is updated to include its own `JSX.IntrinsicElements` types for standard HTML elements. This is done through `@hwy-js/dev` and requires Hwy projects to have `@hwy-js/dev` in the types array of their `tsconfig.json` files in order to use these intrisic element types.
3. Update `create-hwy` to use the new `@hwy-js/dev` types in generated project's `tsconfig.json`.

## 0.4.1

## 0.4.0
Expand Down
44 changes: 0 additions & 44 deletions packages/create-hwy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,49 +1,5 @@
# create-hwy

## 0.4.2-beta.6

### Patch Changes

- clean up types

## 0.4.2-beta.5

### Patch Changes

- update types

## 0.4.2-beta.4

### Patch Changes

- Add style types

## 0.4.2-beta.3

### Patch Changes

- Update types

## 0.4.2-beta.2

### Patch Changes

- Update JSX types

## 0.4.2-beta.1

### Patch Changes

- Using typescript built-ins instead of Preact types, and added some type munging and fixes to match Hwy's use cases

## 0.4.2-beta.0

### Patch Changes

- 1. Update all dependencies.
2. Temporarily use Preact's `JSX.IntrinsicElements` types until Hono is updated to include its own `JSX.IntrinsicElements` types for standard HTML elements. This is done through `@hwy-js/dev` and requires Hwy projects to have `@hwy-js/dev` in the types array of their `tsconfig.json` files in order to use these intrisic element types.
3. Update `create-hwy` to use the new `@hwy-js/dev` types in generated project's `tsconfig.json`.

## 0.4.1

### Patch Changes
Expand Down
44 changes: 0 additions & 44 deletions packages/dev/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,49 +1,5 @@
# @hwy-js/dev

## 0.4.2-beta.6

### Patch Changes

- clean up types

## 0.4.2-beta.5

### Patch Changes

- update types

## 0.4.2-beta.4

### Patch Changes

- Add style types

## 0.4.2-beta.3

### Patch Changes

- Update types

## 0.4.2-beta.2

### Patch Changes

- Update JSX types

## 0.4.2-beta.1

### Patch Changes

- Using typescript built-ins instead of Preact types, and added some type munging and fixes to match Hwy's use cases

## 0.4.2-beta.0

### Patch Changes

- 1. Update all dependencies.
2. Temporarily use Preact's `JSX.IntrinsicElements` types until Hono is updated to include its own `JSX.IntrinsicElements` types for standard HTML elements. This is done through `@hwy-js/dev` and requires Hwy projects to have `@hwy-js/dev` in the types array of their `tsconfig.json` files in order to use these intrisic element types.
3. Update `create-hwy` to use the new `@hwy-js/dev` types in generated project's `tsconfig.json`.

## 0.4.1

## 0.4.0
Expand Down
11 changes: 0 additions & 11 deletions testers/cf-pages/src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,14 +97,3 @@ app.onError((error, c) => {
});

export default app;

type Bob = JSX.IntrinsicElements["div"];

const test: Bob = {
class: "test",
ontimeupdate: "",
};

test.class;

type Jeff = JSX.Element;

0 comments on commit d483cd6

Please sign in to comment.