Skip to content

Commit

Permalink
Version Packages (#28)
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]

### Patch Changes

-   0d8e4bb: fix deps
-   Updated dependencies [0d8e4bb]
    -   @coldwired/[email protected]

## @coldwired/[email protected]

### Patch Changes

-   0d8e4bb: fix deps
  • Loading branch information
tchak authored Apr 26, 2024
2 parents 963a311 + d0ee0c8 commit 1af2ff9
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 15 deletions.
6 changes: 0 additions & 6 deletions .changeset/strange-carpets-own.md

This file was deleted.

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

## 0.12.2

### Patch Changes

- 0d8e4bb: fix deps
- Updated dependencies [0d8e4bb]
- @coldwired/react@0.12.2

## 0.12.0

### Minor Changes
Expand Down
29 changes: 21 additions & 8 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.0",
"keywords": ["turbo"],
"version": "0.12.2",
"keywords": [
"turbo"
],
"scripts": {
"build": "run-s clean build:*",
"build:vite": "vite build",
Expand Down Expand Up @@ -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 All @@ -73,10 +86,10 @@
}
},
"peerDependencies": {
"@coldwired/react": "^0.12.1"
"@coldwired/react": "^0.12.2"
},
"devDependencies": {
"@coldwired/react": "^0.12.1",
"@coldwired/react": "^0.12.2",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"react": "^18.0.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @coldwired/react

## 0.12.2

### Patch Changes

- 0d8e4bb: fix deps

## 0.12.1

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

0 comments on commit 1af2ff9

Please sign in to comment.