Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Marinerer committed Nov 6, 2024
1 parent 6c14eab commit 4d4c86e
Show file tree
Hide file tree
Showing 10 changed files with 38 additions and 5 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"build": "pnpm -r run build",
"build:page": "pnpm --filter vite-plugin-page-html run build",
"build:minify": "pnpm --filter vite-plugin-minify-html run build",
"build:vanilla": "pnpm --filter vite-plugin-vanilla run build",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:release": "changeset publish --registry https://registry.npmjs.org"
Expand Down
6 changes: 6 additions & 0 deletions packages/minify-html/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# vite-plugin-minify-html

## 1.0.1

### Patch Changes 🌟

- fix: Remove export type(MinifyOptions)

## 1.0.0

### Major Changes 🎉
Expand Down
2 changes: 1 addition & 1 deletion packages/minify-html/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vite-plugin-minify-html",
"version": "1.0.0",
"version": "1.0.1",
"description": "Minify HTML files.",
"type": "module",
"types": "./dist/index.d.ts",
Expand Down
9 changes: 9 additions & 0 deletions packages/page-html/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# vite-plugin-page-html

## 3.1.1

### Patch Changes 🌟

- fix: Add @types/html-minifier-terser dependency

- Updated dependencies []:
- [email protected]

## 3.1.0

### Minor Changes 🚀
Expand Down
3 changes: 2 additions & 1 deletion packages/page-html/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vite-plugin-page-html",
"version": "3.1.0",
"version": "3.1.1",
"description": "A simple and flexible Vite plugin for processing HTML pages, integrating multi-page application (MPA) configuration, EJS template support, and HTML compression.",
"type": "module",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -54,6 +54,7 @@
},
"dependencies": {
"@types/ejs": "^3.1.5",
"@types/html-minifier-terser": "^7.0.2",
"connect-history-api-fallback": "^2.0.0",
"diy-log": "^2.5.1",
"ejs": "^3.1.10",
Expand Down
2 changes: 1 addition & 1 deletion packages/page-html/src/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { HtmlTagDescriptor } from 'vite'
import type { MinifyOptions } from 'vite-plugin-minify-html'
import type { Options as MinifyOptions } from 'html-minifier-terser'
import type { Options as EjsOptions } from 'ejs'

/** plugin configurations */
Expand Down
9 changes: 9 additions & 0 deletions packages/vanilla/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# vite-plugin-vanilla

## 0.1.1

### Patch Changes 🌟

- fix: Add @types/html-minifier-terser dependency

- Updated dependencies []:
- [email protected]

## 0.1.0

### Minor Changes 🚀
Expand Down
3 changes: 2 additions & 1 deletion packages/vanilla/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vite-plugin-vanilla",
"version": "0.1.0",
"version": "0.1.1",
"description": "Vanilla multi-page web development model based on Vite.js.",
"type": "module",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -39,6 +39,7 @@
"url": "https://github.com/Marinerer/vite-plugins/issues"
},
"dependencies": {
"@types/html-minifier-terser": "^7.0.2",
"fast-glob": "^3.3.2",
"pathe": "^1.1.2",
"vite-plugin-minify-html": "workspace:^"
Expand Down
2 changes: 1 addition & 1 deletion packages/vanilla/src/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { HtmlTagDescriptor } from 'vite'
import type { MinifyOptions } from 'vite-plugin-minify-html'
import type { Options as MinifyOptions } from 'html-minifier-terser'

export interface PluginOptions {
baseDir?: string
Expand Down
6 changes: 6 additions & 0 deletions pnpm-lock.yaml

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

0 comments on commit 4d4c86e

Please sign in to comment.