Skip to content

Commit

Permalink
Version Packages (#136)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Feb 20, 2024
1 parent 790f8d4 commit 6f7afcc
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 19 deletions.
5 changes: 0 additions & 5 deletions .changeset/curvy-stingrays-compare.md

This file was deleted.

30 changes: 18 additions & 12 deletions packages/formsnap/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# formsnap

## 0.5.0

### Minor Changes

- Rewrite entire library - see https://formsnap.dev ([#131](https://github.com/huntabyte/formsnap/pull/131))

## 0.4.4

### Patch Changes
Expand Down Expand Up @@ -159,18 +165,18 @@

```ts
export type FormFieldContext = {
name: string;
ids: {
input: string;
description: string;
validation: string;
};
errors: Writable<string[] | undefined>;
value: Writable<unknown>;
hasDescription: Writable<boolean>;
hasValidation: Writable<boolean>;
attrStore: AttrStore;
actions: ActionsObject;
name: string;
ids: {
input: string;
description: string;
validation: string;
};
errors: Writable<string[] | undefined>;
value: Writable<unknown>;
hasDescription: Writable<boolean>;
hasValidation: Writable<boolean>;
attrStore: AttrStore;
actions: ActionsObject;
};
```

Expand Down
2 changes: 1 addition & 1 deletion packages/formsnap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "formsnap",
"version": "0.4.4",
"version": "0.5.0",
"scripts": {
"dev": "pnpm watch",
"build": "vite build && pnpm run package",
Expand Down
8 changes: 8 additions & 0 deletions sites/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# docs

## 0.0.1

### Patch Changes

- Updated dependencies [[`790f8d4c55d21826b873f185080b110c7dc7121a`](https://github.com/huntabyte/formsnap/commit/790f8d4c55d21826b873f185080b110c7dc7121a)]:
- formsnap@0.5.0
2 changes: 1 addition & 1 deletion sites/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docs",
"version": "0.0.0",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "concurrently \"pnpm:dev:content\" \"pnpm:dev:svelte\"",
Expand Down

0 comments on commit 6f7afcc

Please sign in to comment.