Skip to content

Commit

Permalink
Version Packages (#30)
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/actions@0.13.0

### Minor Changes

-   9a2bb0d: react support as a plugin

### Patch Changes

-   Updated dependencies [9a2bb0d]
    -   @coldwired/utils@0.13.0

## @coldwired/react@0.13.0

### Minor Changes

-   9a2bb0d: react support as a plugin

### Patch Changes

-   Updated dependencies [9a2bb0d]
    -   @coldwired/utils@0.13.0

## @coldwired/turbo-stream@0.13.0

### Minor Changes

-   9a2bb0d: react support as a plugin

### Patch Changes

-   Updated dependencies [9a2bb0d]
    -   @coldwired/actions@0.13.0
    -   @coldwired/utils@0.13.0

## @coldwired/utils@0.13.0

### Minor Changes

-   9a2bb0d: react support as a plugin
  • Loading branch information
tchak authored Apr 29, 2024
2 parents 3f07d8d + e7d83bf commit 16d584b
Show file tree
Hide file tree
Showing 9 changed files with 81 additions and 25 deletions.
8 changes: 0 additions & 8 deletions .changeset/silver-hornets-explode.md

This file was deleted.

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

## 0.13.0

### Minor Changes

- 9a2bb0d: react support as a plugin

### Patch Changes

- Updated dependencies [9a2bb0d]
- @coldwired/utils@0.13.0

## 0.12.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.12.2",
"keywords": ["turbo"],
"version": "0.13.0",
"keywords": [
"turbo"
],
"scripts": {
"build": "run-s clean build:*",
"build:vite": "vite build",
Expand All @@ -31,7 +35,7 @@
"clean": "del dist coverage node_modules/.vite"
},
"dependencies": {
"@coldwired/utils": "^0.12.0",
"@coldwired/utils": "^0.13.0",
"morphdom": "^2.7.2"
},
"devDependencies": {
Expand All @@ -48,15 +52,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
11 changes: 11 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @coldwired/react

## 0.13.0

### Minor Changes

- 9a2bb0d: react support as a plugin

### Patch Changes

- Updated dependencies [9a2bb0d]
- @coldwired/utils@0.13.0

## 0.12.2

### Patch Changes
Expand Down
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 support for @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.12.2",
"version": "0.13.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.12.0"
"@coldwired/utils": "^0.13.0"
},
"devDependencies": {
"@coldwired/actions": "*",
Expand All @@ -53,15 +55,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/turbo-stream/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @coldwired/turbo-stream

## 0.13.0

### Minor Changes

- 9a2bb0d: react support as a plugin

### Patch Changes

- Updated dependencies [9a2bb0d]
- @coldwired/actions@0.13.0
- @coldwired/utils@0.13.0

## 0.12.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/turbo-stream/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
},
"type": "module",
"version": "0.12.0",
"version": "0.13.0",
"keywords": [
"turbo"
],
Expand All @@ -34,8 +34,8 @@
"clean": "del dist coverage node_modules/.vite"
},
"dependencies": {
"@coldwired/actions": "^0.12.0",
"@coldwired/utils": "^0.12.0",
"@coldwired/actions": "^0.13.0",
"@coldwired/utils": "^0.13.0",
"tiny-invariant": "^1.3.2"
},
"engines": {
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.13.0

### Minor Changes

- 9a2bb0d: react support as a plugin

## 0.12.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
},
"type": "module",
"version": "0.12.0",
"version": "0.13.0",
"scripts": {
"build": "run-s clean build:*",
"build:vite": "vite build",
Expand Down

0 comments on commit 16d584b

Please sign in to comment.