Skip to content

Commit

Permalink
Version Packages V0.5 (#95)
Browse files Browse the repository at this point in the history
Version Packages

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Mar 19, 2023
1 parent 536575a commit 2916ead
Show file tree
Hide file tree
Showing 17 changed files with 66 additions and 35 deletions.
5 changes: 0 additions & 5 deletions .changeset/empty-bees-listen.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lovely-books-repair.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/popular-chairs-move.md

This file was deleted.

2 changes: 1 addition & 1 deletion examples/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"devDependencies": {
"@farmfe/cli": "workspace:*",
"@farmfe/core": "workspace:*",
"@farmfe/plugin-react": "workspace:^0.0.0",
"@farmfe/plugin-react": "workspace:^0.1.0",
"@types/react": "18",
"@types/react-dom": "18",
"react-refresh": "^0.14.0"
Expand Down
11 changes: 11 additions & 0 deletions examples/script-entry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# @farmfe-examples/script-entry

## 0.0.1

### Patch Changes

- Updated dependencies [9987627]
- Updated dependencies [bd8c762]
- Updated dependencies [a5364b5]
- @farmfe/core@0.5.0
- @farmfe/cli@0.4.0
2 changes: 1 addition & 1 deletion examples/script-entry/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@farmfe-examples/script-entry",
"version": "0.0.0",
"version": "0.0.1",
"private": true,
"type": "module",
"dependencies": {
Expand Down
6 changes: 6 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @farmfe/cli

## 0.4.0

### Minor Changes

- a5364b5: Extract plugin react into a single plugin

## 0.3.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@farmfe/cli",
"version": "0.3.3",
"version": "0.4.0",
"description": "CLI of Farm",
"type": "module",
"author": {
Expand Down Expand Up @@ -49,6 +49,6 @@
},
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@farmfe/core": "workspace:^0.4.1"
"@farmfe/core": "workspace:^0.5.0"
}
}
14 changes: 14 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @farmfe/core

## 0.5.0

### Minor Changes

- 9987627: Queue async update and wait for compiling to finish when refresh
- bd8c762: Change query from HashMap to Vec<(String, String)> to make it's order stable
- a5364b5: Extract plugin react into a single plugin

### Patch Changes

- Updated dependencies [a5364b5]
- @farmfe/runtime-plugin-hmr@3.1.0
- @farmfe/runtime@0.4.0

## 0.4.7

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@farmfe/core",
"version": "0.4.7",
"version": "0.5.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
Expand Down Expand Up @@ -62,8 +62,8 @@
"type-check": "npm run build"
},
"dependencies": {
"@farmfe/runtime": "workspace:^0.3.4",
"@farmfe/runtime-plugin-hmr": "workspace:^3.0.5",
"@farmfe/runtime": "workspace:^0.4.0",
"@farmfe/runtime-plugin-hmr": "workspace:^3.1.0",
"@swc/helpers": "^0.4.9",
"boxen": "^7.0.1",
"chalk": "^5.2.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/runtime-plugin-hmr/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @farmfe/runtime-plugin-hmr

## 3.1.0

### Minor Changes

- a5364b5: Extract plugin react into a single plugin

## 3.0.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/runtime-plugin-hmr/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@farmfe/runtime-plugin-hmr",
"version": "3.0.5",
"version": "3.1.0",
"description": "Runtime hmr plugin of Farm",
"author": {
"name": "bright wu",
Expand All @@ -12,6 +12,6 @@
"type-check": "tsc -p tsconfig.json --noEmit"
},
"devDependencies": {
"@farmfe/runtime": "workspace:^0.3.3"
"@farmfe/runtime": "workspace:^0.4.0"
}
}
6 changes: 6 additions & 0 deletions packages/runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @farmfe/runtime

## 0.4.0

### Minor Changes

- a5364b5: Extract plugin react into a single plugin

## 0.3.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@farmfe/runtime",
"version": "0.3.4",
"version": "0.4.0",
"description": "Runtime of Farm",
"author": {
"name": "bright wu",
Expand Down
10 changes: 5 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions rust-plugins/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @farmfe/plugin-react

## 0.1.0

### Minor Changes

- a5364b5: Extract plugin react into a single plugin
2 changes: 1 addition & 1 deletion rust-plugins/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@farmfe/plugin-react",
"version": "0.0.0",
"version": "0.1.0",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
Expand Down

0 comments on commit 2916ead

Please sign in to comment.