Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #1021

Merged
merged 1 commit into from
Mar 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
70 changes: 35 additions & 35 deletions Cargo.lock

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

14 changes: 14 additions & 0 deletions crates/compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.2](https://github.com/farm-fe/farm/compare/farmfe_compiler-v0.0.1...farmfe_compiler-v0.0.2) - 2024-03-24

### Added
- minify modules instead of resource pots ([#1025](https://github.com/farm-fe/farm/pull/1025))
- remove if (import.meta.hot) guard for production ([#1030](https://github.com/farm-fe/farm/pull/1030))

### Fixed
- add remove import meta hot condition ([#1056](https://github.com/farm-fe/farm/pull/1056))
- tree shake variable assign ([#1054](https://github.com/farm-fe/farm/pull/1054))
- treeshake class decl assign ([#1038](https://github.com/farm-fe/farm/pull/1038))

### Other
- Feat/update readme ([#1028](https://github.com/farm-fe/farm/pull/1028))

## [0.0.1](https://github.com/farm-fe/farm/releases/tag/farmfe_compiler-v0.0.1) - 2024-03-12

### Added
Expand Down
38 changes: 19 additions & 19 deletions crates/compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "farmfe_compiler"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
authors = ["brightwu(吴明亮) <1521488775@qq.com>"]
license = "MIT"
Expand All @@ -10,24 +10,24 @@ repository = "https://github.com/farm-fe/farm"
documentation = "https://docs.rs/farmfe_compiler"

[dependencies]
farmfe_core = { path = "../core", version = "0.4.1" }
farmfe_plugin_partial_bundling = { path = "../plugin_partial_bundling", version = "0.0.1" }
farmfe_plugin_resolve = { path = "../plugin_resolve", version = "0.0.1" }
farmfe_plugin_script = { path = "../plugin_script", version = "0.0.1" }
farmfe_plugin_runtime = { path = "../plugin_runtime", version = "0.0.1" }
farmfe_plugin_html = { path = "../plugin_html", version = "0.0.1" }
farmfe_plugin_tree_shake = { path = "../plugin_tree_shake", version = "0.0.1" }
farmfe_plugin_css = { path = "../plugin_css", version = "0.0.1" }
farmfe_plugin_lazy_compilation = { path = "../plugin_lazy_compilation", version = "0.0.1" }
farmfe_plugin_static_assets = { path = "../plugin_static_assets", version = "0.0.1" }
farmfe_plugin_minify = { path = "../plugin_minify", version = "0.0.1" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.2" }
farmfe_utils = { path = "../utils", version = "0.1.3" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.2" }
farmfe_plugin_json = { path = "../plugin_json", version = "0.0.1" }
farmfe_plugin_polyfill = { path = "../plugin_polyfill", version = "0.0.1" }
farmfe_plugin_progress = { path = "../plugin_progress", version = "0.0.1" }
farmfe_plugin_define = { path = "../plugin_define", version = "0.0.1" }
farmfe_core = { path = "../core", version = "0.4.2" }
farmfe_plugin_partial_bundling = { path = "../plugin_partial_bundling", version = "0.0.2" }
farmfe_plugin_resolve = { path = "../plugin_resolve", version = "0.0.2" }
farmfe_plugin_script = { path = "../plugin_script", version = "0.0.2" }
farmfe_plugin_runtime = { path = "../plugin_runtime", version = "0.0.2" }
farmfe_plugin_html = { path = "../plugin_html", version = "0.0.2" }
farmfe_plugin_tree_shake = { path = "../plugin_tree_shake", version = "0.0.2" }
farmfe_plugin_css = { path = "../plugin_css", version = "0.0.2" }
farmfe_plugin_lazy_compilation = { path = "../plugin_lazy_compilation", version = "0.0.2" }
farmfe_plugin_static_assets = { path = "../plugin_static_assets", version = "0.0.2" }
farmfe_plugin_minify = { path = "../plugin_minify", version = "0.0.2" }
farmfe_toolkit = { path = "../toolkit", version = "0.0.3" }
farmfe_utils = { path = "../utils", version = "0.1.4" }
farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.3" }
farmfe_plugin_json = { path = "../plugin_json", version = "0.0.2" }
farmfe_plugin_polyfill = { path = "../plugin_polyfill", version = "0.0.2" }
farmfe_plugin_progress = { path = "../plugin_progress", version = "0.0.2" }
farmfe_plugin_define = { path = "../plugin_define", version = "0.0.2" }
num_cpus = "1.16.0"

[features]
Expand Down
13 changes: 13 additions & 0 deletions crates/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.2](https://github.com/farm-fe/farm/compare/farmfe_core-v0.4.1...farmfe_core-v0.4.2) - 2024-03-24

### Added
- farm e2e test ([#1041](https://github.com/farm-fe/farm/pull/1041)) ([#1049](https://github.com/farm-fe/farm/pull/1049))
- minify modules instead of resource pots ([#1025](https://github.com/farm-fe/farm/pull/1025))

### Fixed
- vite project migration issues ([#1060](https://github.com/farm-fe/farm/pull/1060))

### Other
- support glob brace ([#1055](https://github.com/farm-fe/farm/pull/1055))
- Feat/update readme ([#1028](https://github.com/farm-fe/farm/pull/1028))

## [0.4.1](https://github.com/farm-fe/farm/compare/farmfe_core-v0.4.0...farmfe_core-v0.4.1) - 2024-03-13

### Other
Expand Down
6 changes: 3 additions & 3 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "farmfe_core"
version = "0.4.1"
version = "0.4.2"
edition = "2021"
authors = ["brightwu(吴明亮) <1521488775@qq.com>"]
license = "MIT"
Expand All @@ -14,8 +14,8 @@ readme = "README.md"
no-default-features = true

[dependencies]
farmfe_macro_cache_item = { version = "0.1.2", path = "../macro_cache_item" }
farmfe_utils = { version = "0.1.3", path = "../utils" }
farmfe_macro_cache_item = { version = "0.1.3", path = "../macro_cache_item" }
farmfe_utils = { version = "0.1.4", path = "../utils" }
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
parking_lot = { version = "0.12", features = ["deadlock_detection"] }
Expand Down
5 changes: 5 additions & 0 deletions crates/macro_cache_item/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.3](https://github.com/farm-fe/farm/compare/farmfe_macro_cache_item-v0.1.2...farmfe_macro_cache_item-v0.1.3) - 2024-03-24

### Other
- Feat/update readme ([#1028](https://github.com/farm-fe/farm/pull/1028))

## [0.1.2](https://github.com/farm-fe/farm/compare/farmfe_macro_cache_item-v0.1.1...farmfe_macro_cache_item-v0.1.2) - 2024-02-06

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/macro_cache_item/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "farmfe_macro_cache_item"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
description = "Macro to create a farm cache item"
license = "MIT"
Expand Down