Skip to content

Commit 88bf739

Browse files
committed
release: Version Packages
1 parent bf358ae commit 88bf739

File tree

5 files changed

+25
-13
lines changed

5 files changed

+25
-13
lines changed

packages/page-html/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# vite-plugin-page-html
22

3+
## 3.1.5
4+
5+
### Patch Changes 🌟
6+
7+
- fix: Merge inject.data & inject.tags (#8)
8+
39
## 3.1.4
410

511
### Patch Changes 🌟

packages/page-html/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vite-plugin-page-html",
3-
"version": "3.1.4",
3+
"version": "3.1.5",
44
"description": "A simple and flexible Vite plugin for processing HTML pages, integrating multi-page application (MPA) configuration, EJS template support, and HTML compression.",
55
"type": "module",
66
"main": "./dist/index.js",

packages/vanilla/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# vite-plugin-vanilla
22

3+
## 2.1.1
4+
5+
### Minor Changes 🌟
6+
7+
- docs: Update README (#7)
8+
39
## 2.1.0
410

511
### Minor Changes 🌟

packages/vanilla/README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,21 @@ export default defineConfig({
3434
## API
3535

3636
```js
37-
vanilla(options: string | string[] | object)
37+
vanilla(options: string | string[] | IOptions)
3838
```
3939

4040
### options
4141

42-
| Name | Type | Default | Description |
43-
| --------------- | ---------------------------- | ------- | ------------------------------------- |
44-
| `include` | `string \| string[]` | | The pattern of pages. |
45-
| `exclude` | `string[]` | `[]` | The pattern of pages to exclude. |
46-
| `base` | `string` | `'src'` | The base directory of pages. |
47-
| `suffix` | `string \| string[]` | `html` | The suffix of page file. |
48-
| `minify` | `boolean` | `true` | Whether to minify the HTML. |
49-
| `transform` | `Transform` | | Transform the HTML. |
50-
| `inject` | `{tags:HtmlTagDescriptor[]}` | | Inject the HTML Tags. |
51-
| `replaceDefine` | `boolean` | `true` | Static replace `vite.define` in HTML. |
42+
| Name | Type | Default | Description |
43+
| --------------- | ---------------------------- | --------------- | ------------------------------------- |
44+
| `include` | `string \| string[]` | `src/**/*.html` | The pattern of pages. |
45+
| `exclude` | `string[]` | `[]` | The pattern of pages to exclude. |
46+
| `base` | `string` | `'src'` | The base directory of pages. |
47+
| `suffix` | `string \| string[]` | `'html'` | The suffix of page file. |
48+
| `minify` | `boolean` | `true` | Whether to minify the HTML. |
49+
| `transform` | `Transform` | | Transform the HTML. |
50+
| `inject` | `{tags:HtmlTagDescriptor[]}` | | Inject the HTML Tags. |
51+
| `replaceDefine` | `boolean` | `true` | Static replace `vite.define` in HTML. |
5252

5353
**options.transform**
5454

packages/vanilla/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vite-plugin-vanilla",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "Vanilla multi-page web development mode based on Vite.",
55
"type": "module",
66
"main": "./dist/index.js",

0 commit comments

Comments
 (0)