Skip to content

Commit b8f6283

Browse files
chore(release): release
1 parent 9a69869 commit b8f6283

File tree

32 files changed

+344
-63
lines changed

32 files changed

+344
-63
lines changed

.changeset/cuddly-cameras-promise.md

-17
This file was deleted.

.changeset/tiny-dolls-raise.md

-29
This file was deleted.

examples/react-vite/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525
"eslint-plugin-react-hooks": "^4.6.2",
2626
"eslint-plugin-react-refresh": "^0.4.7",
2727
"typescript": "^5.2.2",
28-
"vite": "^5.3.1"
28+
"vite": "^0.0.0"
2929
}
3030
}

examples/svelte-vite/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
"svelte-check": "^3.8.1",
2222
"tslib": "^2.6.3",
2323
"typescript": "^5.2.2",
24-
"vite": "^5.3.1"
24+
"vite": "^0.0.0"
2525
}
2626
}

examples/vite/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
},
1616
"devDependencies": {
1717
"typescript": "^5.2.2",
18-
"vite": "^5.3.1"
18+
"vite": "^0.0.0"
1919
}
2020
}

examples/vue3-vite/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"devDependencies": {
1717
"@vitejs/plugin-vue": "^5.0.5",
1818
"typescript": "^5.2.2",
19-
"vite": "^5.3.1",
19+
"vite": "^0.0.0",
2020
"vue-tsc": "^2.0.21"
2121
}
2222
}

packages/bbob-cli/CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Change Log
22

3+
## 4.3.0
4+
5+
### Minor Changes
6+
7+
- [#280](https://github.com/JiLiZART/BBob/pull/280) [`9a69869`](https://github.com/JiLiZART/BBob/commit/9a6986965e986f8ea1f3217439ee639733a72e01) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now all file protocol urls will be escaped like `file://some/path/to/file` will be converted to `file%3A//some/path/to/file`
8+
9+
- [#272](https://github.com/JiLiZART/BBob/pull/272) [`0566241`](https://github.com/JiLiZART/BBob/commit/0566241e2315cae0879ecb3ab467c83e99f0cc49) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Added `whitespaceInTags` parsing option (true by default) with this option you can disable parsing `[tags with spaces]` it will be considered as text
10+
11+
```js
12+
import html5 from "@bbob/preset-html5";
13+
import parse from "@bbob/html";
14+
15+
const html = parse("[b]lorem[/b] [foo bar] [i]ipsum[/i]", html5(), {
16+
whitespaceInTags: false,
17+
});
18+
19+
console.log(html); // <b>lorem </b> [foo bar] <i>ipsum</i>
20+
```
21+
22+
### Patch Changes
23+
24+
- Updated dependencies [[`9a69869`](https://github.com/JiLiZART/BBob/commit/9a6986965e986f8ea1f3217439ee639733a72e01), [`0566241`](https://github.com/JiLiZART/BBob/commit/0566241e2315cae0879ecb3ab467c83e99f0cc49)]:
25+
- @bbob/html@4.3.0
26+
- @bbob/preset-html5@4.3.0
27+
328
## 4.2.0
429

530
### Minor Changes

packages/bbob-cli/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bbob/cli",
3-
"version": "4.2.0",
3+
"version": "4.3.0",
44
"description": "Comand line bbcode parser",
55
"bin": {
66
"bbob": "lib/cli.js"

packages/bbob-core/CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# Change Log
22

3+
## 4.3.0
4+
5+
### Minor Changes
6+
7+
- [#280](https://github.com/JiLiZART/BBob/pull/280) [`9a69869`](https://github.com/JiLiZART/BBob/commit/9a6986965e986f8ea1f3217439ee639733a72e01) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now all file protocol urls will be escaped like `file://some/path/to/file` will be converted to `file%3A//some/path/to/file`
8+
9+
- [#272](https://github.com/JiLiZART/BBob/pull/272) [`0566241`](https://github.com/JiLiZART/BBob/commit/0566241e2315cae0879ecb3ab467c83e99f0cc49) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Added `whitespaceInTags` parsing option (true by default) with this option you can disable parsing `[tags with spaces]` it will be considered as text
10+
11+
```js
12+
import html5 from "@bbob/preset-html5";
13+
import parse from "@bbob/html";
14+
15+
const html = parse("[b]lorem[/b] [foo bar] [i]ipsum[/i]", html5(), {
16+
whitespaceInTags: false,
17+
});
18+
19+
console.log(html); // <b>lorem </b> [foo bar] <i>ipsum</i>
20+
```
21+
22+
### Patch Changes
23+
24+
- Updated dependencies [[`9a69869`](https://github.com/JiLiZART/BBob/commit/9a6986965e986f8ea1f3217439ee639733a72e01), [`0566241`](https://github.com/JiLiZART/BBob/commit/0566241e2315cae0879ecb3ab467c83e99f0cc49)]:
25+
- @bbob/parser@4.3.0
26+
- @bbob/types@4.3.0
27+
- @bbob/plugin-helper@4.3.0
28+
329
## 4.2.0
430

531
### Minor Changes

packages/bbob-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bbob/core",
3-
"version": "4.2.0",
3+
"version": "4.3.0",
44
"description": "⚡️Blazing-fast js-bbcode-parser, bbcode js, that transforms and parses to AST with plugin support in pure javascript, no dependencies",
55
"keywords": [
66
"bbcode",

packages/bbob-html/CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# Change Log
22

3+
## 4.3.0
4+
5+
### Minor Changes
6+
7+
- [#280](https://github.com/JiLiZART/BBob/pull/280) [`9a69869`](https://github.com/JiLiZART/BBob/commit/9a6986965e986f8ea1f3217439ee639733a72e01) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now all file protocol urls will be escaped like `file://some/path/to/file` will be converted to `file%3A//some/path/to/file`
8+
9+
- [#272](https://github.com/JiLiZART/BBob/pull/272) [`0566241`](https://github.com/JiLiZART/BBob/commit/0566241e2315cae0879ecb3ab467c83e99f0cc49) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Added `whitespaceInTags` parsing option (true by default) with this option you can disable parsing `[tags with spaces]` it will be considered as text
10+
11+
```js
12+
import html5 from "@bbob/preset-html5";
13+
import parse from "@bbob/html";
14+
15+
const html = parse("[b]lorem[/b] [foo bar] [i]ipsum[/i]", html5(), {
16+
whitespaceInTags: false,
17+
});
18+
19+
console.log(html); // <b>lorem </b> [foo bar] <i>ipsum</i>
20+
```
21+
22+
### Patch Changes
23+
24+
- Updated dependencies [[`9a69869`](https://github.com/JiLiZART/BBob/commit/9a6986965e986f8ea1f3217439ee639733a72e01), [`0566241`](https://github.com/JiLiZART/BBob/commit/0566241e2315cae0879ecb3ab467c83e99f0cc49)]:
25+
- @bbob/types@4.3.0
26+
- @bbob/core@4.3.0
27+
- @bbob/plugin-helper@4.3.0
28+
329
## 4.2.0
430

531
### Minor Changes

packages/bbob-html/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bbob/html",
3-
"version": "4.2.0",
3+
"version": "4.3.0",
44
"description": "A BBCode to HTML Renderer part of @bbob",
55
"keywords": [
66
"html",

packages/bbob-parser/CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Change Log
22

3+
## 4.3.0
4+
5+
### Minor Changes
6+
7+
- [#280](https://github.com/JiLiZART/BBob/pull/280) [`9a69869`](https://github.com/JiLiZART/BBob/commit/9a6986965e986f8ea1f3217439ee639733a72e01) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now all file protocol urls will be escaped like `file://some/path/to/file` will be converted to `file%3A//some/path/to/file`
8+
9+
- [#272](https://github.com/JiLiZART/BBob/pull/272) [`0566241`](https://github.com/JiLiZART/BBob/commit/0566241e2315cae0879ecb3ab467c83e99f0cc49) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Added `whitespaceInTags` parsing option (true by default) with this option you can disable parsing `[tags with spaces]` it will be considered as text
10+
11+
```js
12+
import html5 from "@bbob/preset-html5";
13+
import parse from "@bbob/html";
14+
15+
const html = parse("[b]lorem[/b] [foo bar] [i]ipsum[/i]", html5(), {
16+
whitespaceInTags: false,
17+
});
18+
19+
console.log(html); // <b>lorem </b> [foo bar] <i>ipsum</i>
20+
```
21+
22+
### Patch Changes
23+
24+
- Updated dependencies [[`9a69869`](https://github.com/JiLiZART/BBob/commit/9a6986965e986f8ea1f3217439ee639733a72e01), [`0566241`](https://github.com/JiLiZART/BBob/commit/0566241e2315cae0879ecb3ab467c83e99f0cc49)]:
25+
- @bbob/types@4.3.0
26+
- @bbob/plugin-helper@4.3.0
27+
328
## 4.2.0
429

530
### Minor Changes

packages/bbob-parser/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bbob/parser",
3-
"version": "4.2.0",
3+
"version": "4.3.0",
44
"description": "A BBCode to AST Parser part of @bbob",
55
"keywords": [
66
"bbcode",

packages/bbob-plugin-helper/CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Change Log
22

3+
## 4.3.0
4+
5+
### Minor Changes
6+
7+
- [#280](https://github.com/JiLiZART/BBob/pull/280) [`9a69869`](https://github.com/JiLiZART/BBob/commit/9a6986965e986f8ea1f3217439ee639733a72e01) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now all file protocol urls will be escaped like `file://some/path/to/file` will be converted to `file%3A//some/path/to/file`
8+
9+
- [#272](https://github.com/JiLiZART/BBob/pull/272) [`0566241`](https://github.com/JiLiZART/BBob/commit/0566241e2315cae0879ecb3ab467c83e99f0cc49) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Added `whitespaceInTags` parsing option (true by default) with this option you can disable parsing `[tags with spaces]` it will be considered as text
10+
11+
```js
12+
import html5 from "@bbob/preset-html5";
13+
import parse from "@bbob/html";
14+
15+
const html = parse("[b]lorem[/b] [foo bar] [i]ipsum[/i]", html5(), {
16+
whitespaceInTags: false,
17+
});
18+
19+
console.log(html); // <b>lorem </b> [foo bar] <i>ipsum</i>
20+
```
21+
22+
### Patch Changes
23+
24+
- Updated dependencies [[`9a69869`](https://github.com/JiLiZART/BBob/commit/9a6986965e986f8ea1f3217439ee639733a72e01), [`0566241`](https://github.com/JiLiZART/BBob/commit/0566241e2315cae0879ecb3ab467c83e99f0cc49)]:
25+
- @bbob/types@4.3.0
26+
327
## 4.2.0
428

529
### Minor Changes

packages/bbob-plugin-helper/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bbob/plugin-helper",
3-
"version": "4.2.0",
3+
"version": "4.3.0",
44
"description": "Set of utils to help write plugins for @bbob/core",
55
"keywords": [
66
"bbob",

packages/bbob-preset-html5/CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# Change Log
22

3+
## 4.3.0
4+
5+
### Minor Changes
6+
7+
- [#280](https://github.com/JiLiZART/BBob/pull/280) [`9a69869`](https://github.com/JiLiZART/BBob/commit/9a6986965e986f8ea1f3217439ee639733a72e01) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now all file protocol urls will be escaped like `file://some/path/to/file` will be converted to `file%3A//some/path/to/file`
8+
9+
- [#272](https://github.com/JiLiZART/BBob/pull/272) [`0566241`](https://github.com/JiLiZART/BBob/commit/0566241e2315cae0879ecb3ab467c83e99f0cc49) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Added `whitespaceInTags` parsing option (true by default) with this option you can disable parsing `[tags with spaces]` it will be considered as text
10+
11+
```js
12+
import html5 from "@bbob/preset-html5";
13+
import parse from "@bbob/html";
14+
15+
const html = parse("[b]lorem[/b] [foo bar] [i]ipsum[/i]", html5(), {
16+
whitespaceInTags: false,
17+
});
18+
19+
console.log(html); // <b>lorem </b> [foo bar] <i>ipsum</i>
20+
```
21+
22+
### Patch Changes
23+
24+
- Updated dependencies [[`9a69869`](https://github.com/JiLiZART/BBob/commit/9a6986965e986f8ea1f3217439ee639733a72e01), [`0566241`](https://github.com/JiLiZART/BBob/commit/0566241e2315cae0879ecb3ab467c83e99f0cc49)]:
25+
- @bbob/types@4.3.0
26+
- @bbob/plugin-helper@4.3.0
27+
- @bbob/preset@4.3.0
28+
329
## 4.2.0
430

531
### Minor Changes

packages/bbob-preset-html5/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bbob/preset-html5",
3-
"version": "4.2.0",
3+
"version": "4.3.0",
44
"description": "HTML5 preset to transform BBCode to HTML for @bbob/parser",
55
"keywords": [
66
"preset",

packages/bbob-preset-react/CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Change Log
22

3+
## 4.3.0
4+
5+
### Minor Changes
6+
7+
- [#280](https://github.com/JiLiZART/BBob/pull/280) [`9a69869`](https://github.com/JiLiZART/BBob/commit/9a6986965e986f8ea1f3217439ee639733a72e01) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now all file protocol urls will be escaped like `file://some/path/to/file` will be converted to `file%3A//some/path/to/file`
8+
9+
- [#272](https://github.com/JiLiZART/BBob/pull/272) [`0566241`](https://github.com/JiLiZART/BBob/commit/0566241e2315cae0879ecb3ab467c83e99f0cc49) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Added `whitespaceInTags` parsing option (true by default) with this option you can disable parsing `[tags with spaces]` it will be considered as text
10+
11+
```js
12+
import html5 from "@bbob/preset-html5";
13+
import parse from "@bbob/html";
14+
15+
const html = parse("[b]lorem[/b] [foo bar] [i]ipsum[/i]", html5(), {
16+
whitespaceInTags: false,
17+
});
18+
19+
console.log(html); // <b>lorem </b> [foo bar] <i>ipsum</i>
20+
```
21+
22+
### Patch Changes
23+
24+
- Updated dependencies [[`9a69869`](https://github.com/JiLiZART/BBob/commit/9a6986965e986f8ea1f3217439ee639733a72e01), [`0566241`](https://github.com/JiLiZART/BBob/commit/0566241e2315cae0879ecb3ab467c83e99f0cc49)]:
25+
- @bbob/types@4.3.0
26+
- @bbob/preset-html5@4.3.0
27+
328
## 4.2.0
429

530
### Minor Changes

packages/bbob-preset-react/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bbob/preset-react",
3-
"version": "4.2.0",
3+
"version": "4.3.0",
44
"description": "React preset to transform BBCode to React for @bbob/react",
55
"keywords": [
66
"bbob",

packages/bbob-preset-vue/CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Change Log
22

3+
## 4.3.0
4+
5+
### Minor Changes
6+
7+
- [#280](https://github.com/JiLiZART/BBob/pull/280) [`9a69869`](https://github.com/JiLiZART/BBob/commit/9a6986965e986f8ea1f3217439ee639733a72e01) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Now all file protocol urls will be escaped like `file://some/path/to/file` will be converted to `file%3A//some/path/to/file`
8+
9+
- [#272](https://github.com/JiLiZART/BBob/pull/272) [`0566241`](https://github.com/JiLiZART/BBob/commit/0566241e2315cae0879ecb3ab467c83e99f0cc49) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Added `whitespaceInTags` parsing option (true by default) with this option you can disable parsing `[tags with spaces]` it will be considered as text
10+
11+
```js
12+
import html5 from "@bbob/preset-html5";
13+
import parse from "@bbob/html";
14+
15+
const html = parse("[b]lorem[/b] [foo bar] [i]ipsum[/i]", html5(), {
16+
whitespaceInTags: false,
17+
});
18+
19+
console.log(html); // <b>lorem </b> [foo bar] <i>ipsum</i>
20+
```
21+
22+
### Patch Changes
23+
24+
- Updated dependencies [[`9a69869`](https://github.com/JiLiZART/BBob/commit/9a6986965e986f8ea1f3217439ee639733a72e01), [`0566241`](https://github.com/JiLiZART/BBob/commit/0566241e2315cae0879ecb3ab467c83e99f0cc49)]:
25+
- @bbob/types@4.3.0
26+
- @bbob/preset-html5@4.3.0
27+
328
## 4.2.0
429

530
### Minor Changes

packages/bbob-preset-vue/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bbob/preset-vue",
3-
"version": "4.2.0",
3+
"version": "4.3.0",
44
"description": "Vue preset to transform BBCode to Vue for @bbob/vue*",
55
"keywords": [
66
"bbob",

0 commit comments

Comments
 (0)