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

Commit

Permalink
feat: 依赖包发布至npm
Browse files Browse the repository at this point in the history
  • Loading branch information
jinmao88 committed Nov 24, 2023
1 parent ef2e835 commit b6818f4
Show file tree
Hide file tree
Showing 33 changed files with 223 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"commit": false,
"linked": [],
"access": "restricted",
"baseBranch": "next",
"baseBranch": "master",
"updateInternalDependencies": "patch",
"ignore": []
}
2 changes: 1 addition & 1 deletion apps/admin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@apps/admin",
"version": "3.0.0-beta.1",
"version": "3.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/vbenjs/vue-vben-admin.git",
Expand Down
2 changes: 1 addition & 1 deletion configs/vite/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@config/vite",
"version": "0.0.1",
"version": "0.0.2",
"private": true,
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
Expand Down
11 changes: 11 additions & 0 deletions packages/components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# @vben/components

## 1.0.1

### Patch Changes

- publish 1.0.0
- Updated dependencies
- @vben/constants@1.0.1
- @vben/locale@1.0.1
- @vben/utils@1.0.1
5 changes: 4 additions & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{
"name": "@vben/components",
"version": "3.0.0-beta.1",
"version": "1.0.1",
"main": "index.ts",
"module": "index.ts",
"license": "MIT",
"scripts": {
"clean": "pnpm rimraf node_modules && pnpm rimraf dist && pnpm rimraf .turbo"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@iconify/iconify": "^3.1.1",
"@vben/constants": "workspace:*",
Expand Down
7 changes: 7 additions & 0 deletions packages/constants/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @vben/constants

## 1.0.1

### Patch Changes

- publish 1.0.0
5 changes: 4 additions & 1 deletion packages/constants/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
{
"name": "@vben/constants",
"version": "3.0.0-beta.1",
"version": "1.0.1",
"main": "index.ts",
"module": "index.ts",
"license": "MIT",
"scripts": {
"clean": "pnpm rimraf pnpm rimraf dist && pnpm rimraf .turbo"
},
"publishConfig": {
"access": "public"
}
}
12 changes: 12 additions & 0 deletions packages/demo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# @vben/demo

## 1.0.1

### Patch Changes

- publish 1.0.0
- Updated dependencies
- @vben/vbencomponents@1.0.1
- @vben/request@1.0.1
- @vben/hooks@1.0.1
- @vben/utils@1.0.1
5 changes: 4 additions & 1 deletion packages/demo/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
{
"name": "@vben/demo",
"version": "1.0.0",
"version": "1.0.1",
"description": "",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"publishConfig": {
"access": "public"
},
"keywords": [],
"author": "",
"license": "ISC",
Expand Down
9 changes: 9 additions & 0 deletions packages/directives/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# @vben/directives

## 1.0.1

### Patch Changes

- publish 1.0.0
- Updated dependencies
- @vben/utils@1.0.1
5 changes: 4 additions & 1 deletion packages/directives/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vben/directives",
"version": "3.0.0-beta.1",
"version": "1.0.1",
"main": "index.ts",
"module": "index.ts",
"types": "index.d.js",
Expand All @@ -10,6 +10,9 @@
"scripts": {
"clean": "pnpm rimraf node_modules && pnpm rimraf dist && pnpm rimraf .turbo"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@vben/utils": "workspace:*",
"vue": "3.3.6"
Expand Down
15 changes: 15 additions & 0 deletions packages/grid-layouts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# @vben/grid-layouts

## 3.0.0

### Patch Changes

- Updated dependencies
- @vben/vbencomponents@1.0.1
- @vben/directives@1.0.1
- @vben/constants@1.0.1
- @vben/locale@1.0.1
- @vben/router@1.0.1
- @vben/stores@1.0.1
- @vben/hooks@1.0.1
- @vben/utils@1.0.1
2 changes: 1 addition & 1 deletion packages/grid-layouts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vben/grid-layouts",
"version": "3.0.0-beta.1",
"version": "3.0.0",
"main": "index.ts",
"module": "index.ts",
"license": "MIT",
Expand Down
12 changes: 12 additions & 0 deletions packages/hooks/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# @vben/hooks

## 1.0.1

### Patch Changes

- publish 1.0.0
- Updated dependencies
- @vben/constants@1.0.1
- @vben/locale@1.0.1
- @vben/stores@1.0.1
- @vben/utils@1.0.1
5 changes: 4 additions & 1 deletion packages/hooks/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{
"name": "@vben/hooks",
"version": "3.0.0-beta.1",
"version": "1.0.1",
"main": "index.ts",
"module": "index.ts",
"license": "MIT",
"scripts": {
"clean": "pnpm rimraf node_modules && pnpm rimraf dist && pnpm rimraf .turbo"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@vben/constants": "workspace:*",
"@vben/locale": "workspace:*",
Expand Down
17 changes: 17 additions & 0 deletions packages/layouts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# @vben/layouts

## 1.0.1

### Patch Changes

- publish 1.0.0
- Updated dependencies
- @vben/vbencomponents@1.0.1
- @vben/directives@1.0.1
- @vben/constants@1.0.1
- @vben/locale@1.0.1
- @vben/router@1.0.1
- @vben/stores@1.0.1
- @vben/hooks@1.0.1
- @vben/types@1.0.1
- @vben/utils@1.0.1
5 changes: 4 additions & 1 deletion packages/layouts/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{
"name": "@vben/layouts",
"version": "3.0.0-beta.1",
"version": "1.0.1",
"main": "index.ts",
"module": "index.ts",
"license": "MIT",
"scripts": {
"clean": "pnpm rimraf node_modules && pnpm rimraf dist && pnpm rimraf .turbo"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@vben/constants": "workspace:*",
"@vben/directives": "workspace:*",
Expand Down
11 changes: 11 additions & 0 deletions packages/locale/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# @vben/locale

## 1.0.1

### Patch Changes

- publish 1.0.0
- Updated dependencies
- @vben/constants@1.0.1
- @vben/types@1.0.1
- @vben/utils@1.0.1
5 changes: 4 additions & 1 deletion packages/locale/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{
"name": "@vben/locale",
"version": "3.0.0-beta.1",
"version": "1.0.1",
"main": "index.ts",
"module": "index.ts",
"license": "MIT",
"scripts": {
"clean": "pnpm rimraf node_modules && pnpm rimraf dist && pnpm rimraf .turbo"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@vben/constants": "workspace:*",
"@vben/types": "workspace:*",
Expand Down
11 changes: 11 additions & 0 deletions packages/request/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# @vben/request

## 1.0.1

### Patch Changes

- publish 1.0.0
- Updated dependencies
- @vben/locale@1.0.1
- @vben/types@1.0.1
- @vben/utils@1.0.1
5 changes: 4 additions & 1 deletion packages/request/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{
"name": "@vben/request",
"version": "3.0.0-beta.1",
"version": "1.0.1",
"main": "index.ts",
"module": "index.ts",
"license": "MIT",
"scripts": {
"clean": "pnpm rimraf node_modules && pnpm rimraf dist && pnpm rimraf .turbo"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@vben/locale": "workspace:*",
"@vben/types": "workspace:*",
Expand Down
13 changes: 13 additions & 0 deletions packages/router/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# @vben/router

## 1.0.1

### Patch Changes

- publish 1.0.0
- Updated dependencies
- @vben/components@1.0.1
- @vben/constants@1.0.1
- @vben/locale@1.0.1
- @vben/stores@1.0.1
- @vben/utils@1.0.1
5 changes: 4 additions & 1 deletion packages/router/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{
"name": "@vben/router",
"version": "3.0.0-beta.1",
"version": "1.0.1",
"main": "index.ts",
"module": "index.ts",
"license": "MIT",
"scripts": {
"clean": "pnpm rimraf node_modules && pnpm rimraf dist && pnpm rimraf .turbo"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@vben/constants": "workspace:*",
"@vben/components": "workspace:*",
Expand Down
11 changes: 11 additions & 0 deletions packages/stores/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# @vben/stores

## 1.0.1

### Patch Changes

- publish 1.0.0
- Updated dependencies
- @vben/constants@1.0.1
- @vben/locale@1.0.1
- @vben/utils@1.0.1
5 changes: 4 additions & 1 deletion packages/stores/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{
"name": "@vben/stores",
"version": "3.0.0-beta.1",
"version": "1.0.1",
"main": "index.ts",
"module": "index.ts",
"license": "MIT",
"scripts": {
"clean": "pnpm rimraf node_modules && pnpm rimraf dist && pnpm rimraf .turbo"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@vben/constants": "workspace:*",
"@vben/locale": "workspace:*",
Expand Down
7 changes: 7 additions & 0 deletions packages/styles/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @vben/styles

## 1.0.1

### Patch Changes

- publish 1.0.0
5 changes: 4 additions & 1 deletion packages/styles/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"name": "@vben/styles",
"version": "3.0.0-beta.1",
"version": "1.0.1",
"license": "MIT",
"scripts": {
"clean": "pnpm rimraf node_modules && pnpm rimraf dist && pnpm rimraf .turbo"
},
"publishConfig": {
"access": "public"
}
}
9 changes: 9 additions & 0 deletions packages/types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# @vben/types

## 1.0.1

### Patch Changes

- publish 1.0.0
- Updated dependencies
- @vben/constants@1.0.1
5 changes: 4 additions & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{
"name": "@vben/types",
"version": "3.0.0-beta.1",
"version": "1.0.1",
"main": "index.ts",
"module": "index.ts",
"license": "MIT",
"scripts": {
"clean": "pnpm rimraf node_modules && pnpm rimraf dist && pnpm rimraf .turbo"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@vben/constants": "workspace:*",
"pinia": "2.1.7",
Expand Down
7 changes: 7 additions & 0 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @vben/utils

## 1.0.1

### Patch Changes

- publish 1.0.0
Loading

0 comments on commit b6818f4

Please sign in to comment.