Skip to content

Commit

Permalink
Version Packages (#23)
Browse files Browse the repository at this point in the history
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 publish to npm
yourself or [setup this action to publish
automatically](https://github.com/changesets/action#with-publishing). 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
## @coldwired/[email protected]

### Minor Changes

-   a467d1b: add support for react turbo fragments

### Patch Changes

-   63ff134: update dependencies
-   Updated dependencies [a467d1b]
    -   @coldwired/[email protected]
    -   @coldwired/[email protected]

## @coldwired/[email protected]

### Minor Changes

-   a467d1b: add support for react turbo fragments

### Patch Changes

-   Updated dependencies [a467d1b]
    -   @coldwired/[email protected]

## @coldwired/[email protected]

### Minor Changes

-   a467d1b: add support for react turbo fragments

### Patch Changes

-   63ff134: update dependencies
-   Updated dependencies [a467d1b]
-   Updated dependencies [63ff134]
    -   @coldwired/[email protected]
    -   @coldwired/[email protected]

## @coldwired/[email protected]

### Minor Changes

-   a467d1b: add support for react turbo fragments
  • Loading branch information
tchak authored Apr 25, 2024
2 parents a8a0f43 + 4bec7b0 commit 185e59a
Show file tree
Hide file tree
Showing 10 changed files with 119 additions and 40 deletions.
8 changes: 0 additions & 8 deletions .changeset/red-lemons-cross.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/six-eyes-draw.md

This file was deleted.

13 changes: 13 additions & 0 deletions packages/actions/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @coldwired/actions

## 0.12.0

### Minor Changes

- a467d1b: add support for react turbo fragments

### Patch Changes

- 63ff134: update dependencies
- Updated dependencies [a467d1b]
- @coldwired/react@0.12.0
- @coldwired/utils@0.12.0

## 0.11.2

### Patch Changes
Expand Down
27 changes: 20 additions & 7 deletions packages/actions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
"name": "@coldwired/actions",
"description": "DOM manipulation actions based on morphdom",
"license": "MIT",
"files": ["dist"],
"files": [
"dist"
],
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/types/index.d.ts",
Expand All @@ -13,8 +15,10 @@
}
},
"type": "module",
"version": "0.11.2",
"keywords": ["turbo"],
"version": "0.12.0",
"keywords": [
"turbo"
],
"scripts": {
"build": "run-s clean build:*",
"build:vite": "vite build",
Expand All @@ -32,7 +36,7 @@
},
"dependencies": {
"@coldwired/react": "*",
"@coldwired/utils": "^0.11.1",
"@coldwired/utils": "^0.12.0",
"morphdom": "^2.7.2"
},
"engines": {
Expand All @@ -46,15 +50,24 @@
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"],
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-redeclare": "off"
},
"overrides": [
{
"files": ["vite.config.js", "vitest.config.ts"],
"files": [
"vite.config.js",
"vitest.config.ts"
],
"env": {
"node": true
}
Expand Down
12 changes: 12 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# @coldwired/react

## 0.12.0

### Minor Changes

- a467d1b: add support for react turbo fragments

### Patch Changes

- Updated dependencies [a467d1b]
- @coldwired/utils@0.12.0
23 changes: 17 additions & 6 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
"name": "@coldwired/react",
"description": "React container for use with @coldwired",
"license": "MIT",
"files": ["dist"],
"files": [
"dist"
],
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/types/index.d.ts",
Expand All @@ -13,7 +15,7 @@
}
},
"type": "module",
"version": "0.1.0",
"version": "0.12.0",
"scripts": {
"build": "run-s clean build:*",
"build:vite": "vite build",
Expand All @@ -29,7 +31,7 @@
"clean": "del dist coverage node_modules/.vite"
},
"dependencies": {
"@coldwired/utils": "^0.11.4"
"@coldwired/utils": "^0.12.0"
},
"devDependencies": {
"html-entities": "^2.4.0",
Expand All @@ -51,15 +53,24 @@
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"],
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-redeclare": "off"
},
"overrides": [
{
"files": ["vite.config.js", "vitest.config.ts"],
"files": [
"vite.config.js",
"vitest.config.ts"
],
"env": {
"node": true
}
Expand Down
14 changes: 14 additions & 0 deletions packages/turbo-stream/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @coldwired/turbo-stream

## 0.12.0

### Minor Changes

- a467d1b: add support for react turbo fragments

### Patch Changes

- 63ff134: update dependencies
- Updated dependencies [a467d1b]
- Updated dependencies [63ff134]
- @coldwired/actions@0.12.0
- @coldwired/utils@0.12.0

## 0.11.1

### Patch Changes
Expand Down
29 changes: 21 additions & 8 deletions packages/turbo-stream/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
"name": "@coldwired/turbo-stream",
"description": "A `turbo-stream` implementation based on @coldwired/actions",
"license": "MIT",
"files": ["dist"],
"files": [
"dist"
],
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/types/index.d.ts",
Expand All @@ -13,8 +15,10 @@
}
},
"type": "module",
"version": "0.11.1",
"keywords": ["turbo"],
"version": "0.12.0",
"keywords": [
"turbo"
],
"scripts": {
"build": "run-s clean build:*",
"build:vite": "vite build",
Expand All @@ -30,8 +34,8 @@
"clean": "del dist coverage node_modules/.vite"
},
"dependencies": {
"@coldwired/actions": "^0.11.1",
"@coldwired/utils": "^0.11.1",
"@coldwired/actions": "^0.12.0",
"@coldwired/utils": "^0.12.0",
"tiny-invariant": "^1.3.2"
},
"engines": {
Expand All @@ -45,15 +49,24 @@
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"],
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-redeclare": "off"
},
"overrides": [
{
"files": ["vite.config.js", "vitest.config.ts"],
"files": [
"vite.config.js",
"vitest.config.ts"
],
"env": {
"node": true
}
Expand Down
6 changes: 6 additions & 0 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @coldwired/utils

## 0.12.0

### Minor Changes

- a467d1b: add support for react turbo fragments

## 0.11.4

### Patch Changes
Expand Down
21 changes: 16 additions & 5 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
"name": "@coldwired/utils",
"description": "Utils for use with @coldwired",
"license": "MIT",
"files": ["dist"],
"files": [
"dist"
],
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/types/index.d.ts",
Expand All @@ -13,7 +15,7 @@
}
},
"type": "module",
"version": "0.11.4",
"version": "0.12.0",
"scripts": {
"build": "run-s clean build:*",
"build:vite": "vite build",
Expand Down Expand Up @@ -43,15 +45,24 @@
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"],
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-redeclare": "off"
},
"overrides": [
{
"files": ["vite.config.js", "vitest.config.ts"],
"files": [
"vite.config.js",
"vitest.config.ts"
],
"env": {
"node": true
}
Expand Down

0 comments on commit 185e59a

Please sign in to comment.