Skip to content

Commit

Permalink
Update Changelog, Readme and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
praveenperera committed Aug 13, 2023
1 parent b5b0c88 commit 5c26ceb
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

## [0.19.0] - 2023-08-13

- Add new `--skip-ssl-verification`flag for use with `https` in dev for `--vite-css` [#78](https://github.com/avencera/rustywind/pull/78), thanks [@praveenperera](https://github.com/praveenperera)

## [0.18.0] - 2023-08-11

- Add expiremental support for getting CSS order from a vite URL [#77](https://github.com/avencera/rustywind/pull/77), thanks [@praveenperera](https://github.com/praveenperera)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["Praveen Perera <praveen@avencera.com>"]
edition = "2021"
license = "Apache-2.0"
name = "rustywind"
version = "0.18.0"
version = "0.19.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
9 changes: 6 additions & 3 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,14 @@ Options:

--vite-css <VITE_CSS>
When set RustyWind will determine the sort order by the order the class appear in the CSS file that vite generates.

Please provide the full URL to the CSS file ex: `rustywind --vite-css http://127.0.0.1:5173/src/assets/main.css ./src --write`

Please provide the full URL to the CSS file ex: `rustywind --vite-css "http://127.0.0.1:5173/src/assets/main.css" . --dry-run`
Note: This option is experimental and may be removed in the future.

--skip-ssl-verification
When set, RustyWind will skip SSL verification for the vite_css option

--ignored-files <IGNORED_FILES>
When set, RustyWind will ignore this list of files

Expand Down
9 changes: 6 additions & 3 deletions npm/README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,14 @@ Options:

--vite-css <VITE_CSS>
When set RustyWind will determine the sort order by the order the class appear in the CSS file that vite generates.

Please provide the full URL to the CSS file ex: `http://127.0.0.1:5173/src/assets/main.css`

Please provide the full URL to the CSS file ex: `rustywind --vite-css "http://127.0.0.1:5173/src/assets/main.css" . --dry-run`
Note: This option is experimental and may be removed in the future.

--skip-ssl-verification
When set, RustyWind will skip SSL verification for the vite_css option

--ignored-files <IGNORED_FILES>
When set, RustyWind will ignore this list of files

Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ pub struct Cli {
output_css_file: Option<String>,
/// When set RustyWind will determine the sort order by the order the class appear in the CSS file that vite generates.
///
/// Please provide the full URL to the CSS file ex: `http://127.0.0.1:5173/src/assets/main.css`
/// Please provide the full URL to the CSS file ex: `rustywind --vite-css "http://127.0.0.1:5173/src/assets/main.css" . --dry-run`
///
/// Note: This option is experimental and may be removed in the future.
#[arg(long, conflicts_with_all = &["config_file", "output_css_file"])]
Expand All @@ -80,7 +80,7 @@ pub struct Cli {
#[arg(long, conflicts_with_all = &["config_file", "output_css_file"])]
skip_ssl_verification: bool,

/// When set, RustyWind will ignore this list of files.k
/// When set, RustyWind will ignore this list of files
#[arg(long)]
ignored_files: Option<Vec<String>>,
/// Uses a custom regex instead of default one.
Expand Down

0 comments on commit 5c26ceb

Please sign in to comment.