Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
hemengke1997 committed Jul 3, 2024
1 parent 9fe0106 commit b6a7ead
Show file tree
Hide file tree
Showing 11 changed files with 514 additions and 1,419 deletions.
7 changes: 7 additions & 0 deletions packages/react-component/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @minko-fe/react-component

## 0.2.10

### Patch Changes

- Updated dependencies []:
- @minko-fe/react-hook@0.3.7

## 0.2.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react-component/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@minko-fe/react-component",
"version": "0.2.9",
"version": "0.2.10",
"description": "react-component",
"type": "module",
"keywords": [
Expand Down
6 changes: 6 additions & 0 deletions packages/react-hook/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @minko-fe/react-hook

## 0.3.7

### Patch Changes

- chore: upgrade deps

## 0.3.6

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/react-hook/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@minko-fe/react-hook",
"version": "0.3.6",
"version": "0.3.7",
"description": "react-hook",
"type": "module",
"keywords": [
Expand Down Expand Up @@ -61,8 +61,8 @@
},
"dependencies": {
"@minko-fe/lodash-pro": "workspace:*",
"ahooks": "^3.7.8",
"react-use": "^17.4.0",
"ahooks": "^3.8.0",
"react-use": "^17.5.0",
"use-global-style": "^1.0.1"
},
"devDependencies": {
Expand Down
7 changes: 7 additions & 0 deletions packages/react-route/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @minko-fe/react-route

## 1.0.1

### Patch Changes

- Updated dependencies []:
- @minko-fe/react-hook@0.3.7

## 1.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react-route/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@minko-fe/react-route",
"version": "1.0.0",
"version": "1.0.1",
"description": "react-route",
"type": "module",
"keywords": [
Expand Down
6 changes: 6 additions & 0 deletions packages/vite-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @minko-fe/vite-config

## 1.0.2

### Patch Changes

- fix: vconsole在正式环境中启用的问题

## 1.0.1

### Patch Changes
Expand Down
22 changes: 11 additions & 11 deletions packages/vite-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@minko-fe/vite-config",
"version": "1.0.1",
"version": "1.0.2",
"description": "vite-config",
"type": "module",
"keywords": [
Expand Down Expand Up @@ -66,24 +66,24 @@
},
"dependencies": {
"@minko-fe/lodash-pro": "workspace:*",
"@vitejs/plugin-legacy": "^5.3.0",
"debug": "^4.3.4",
"@vitejs/plugin-legacy": "^5.4.1",
"debug": "^4.3.5",
"fast-glob": "^3.3.2",
"picologger": "^0.0.1",
"rollup-plugin-visualizer": "^5.12.0",
"std-env": "^3.6.0",
"terser": "^5.26.0",
"vconsole": "^3.0.0",
"std-env": "^3.7.0",
"terser": "^5.31.1",
"vconsole": "^3.15.1",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-public-typescript": "^3.1.1",
"vite-plugin-public-typescript": "^3.2.0",
"vite-plugin-svgr": "^4.2.0",
"vite-plugin-vconsole": "^2.0.1",
"vite-plugin-vconsole": "^2.1.1",
"vite-tsconfig-paths": "^4.3.2"
},
"devDependencies": {
"@types/debug": "^4.1.10",
"rollup": "^4.9.6",
"vite": "^5.0.12"
"@types/debug": "^4.1.12",
"rollup": "^4.18.0",
"vite": "^5.3.2"
},
"pnpm": {
"peerDependencyRules": {
Expand Down
2 changes: 1 addition & 1 deletion packages/vite-config/src/node/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ async function setupPlugins(options: PluginOptions, configEnv: ConfigEnv, root:
options as Required<PluginOptions>

if (isUndefined(vConsole)) {
vConsole = ['development', 'test'].includes(mode || process.env.NODE_ENV || '')
vConsole = !['production'].includes(mode || process.env.NODE_ENV || '')
}

const vitePlugins: PluginOption = [visualizerPlugin()]
Expand Down
4 changes: 2 additions & 2 deletions packages/vite-config/src/node/plugins/public-typescript.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { type VPPTPluginOptions, publicTypescript } from 'vite-plugin-public-typescript'
import { type VitePublicTypescriptOptions, publicTypescript } from 'vite-plugin-public-typescript'

export function pt(options: VPPTPluginOptions) {
export function pt(options: VitePublicTypescriptOptions) {
return publicTypescript({
...options,
})
Expand Down
Loading

0 comments on commit b6a7ead

Please sign in to comment.