mirror of
https://gitee.com/antv/g6.git
synced 2024-11-29 18:28:19 +08:00
chore: config changeset and update version and fix circular dependency (#5191)
* chore: config changeset and update version and fix circular dependency * chore: remove generated file * chore: config deploy workflows
This commit is contained in:
parent
23adc722e2
commit
47d243e11a
11
.changeset/config.json
Normal file
11
.changeset/config.json
Normal file
@ -0,0 +1,11 @@
|
||||
{
|
||||
"$schema": "https://unpkg.com/@changesets/config@2.3.1/schema.json",
|
||||
"changelog": "@changesets/cli/changelog",
|
||||
"commit": false,
|
||||
"fixed": [],
|
||||
"linked": [],
|
||||
"access": "restricted",
|
||||
"baseBranch": "master",
|
||||
"updateInternalDependencies": "patch",
|
||||
"ignore": []
|
||||
}
|
30
.github/workflows/deploy.yml
vendored
Normal file
30
.github/workflows/deploy.yml
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
name: Deploy
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
deploy-site:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- run: pnpm install
|
||||
- run: pnpm build
|
||||
- run: cd site && pnpm site:build
|
||||
- run: cp ./site/CNAME ./site/dist/CNAME
|
||||
- run: |
|
||||
cd site/dist
|
||||
git init
|
||||
git config --local user.name antv
|
||||
git config --local user.email antv@antfin.com
|
||||
git add .
|
||||
git commit -m "update by release action"
|
||||
- uses: ad-m/github-push-action@master
|
||||
with:
|
||||
github_token: ${{secrets.PERSONAL_ACCESS_TOKEN}}
|
||||
directory: site/dist
|
||||
branch: v4-site
|
||||
force: true
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -81,7 +81,7 @@ esm
|
||||
|
||||
es
|
||||
|
||||
.github
|
||||
|
||||
# .storybook
|
||||
.vscode/
|
||||
|
||||
|
@ -63,6 +63,7 @@
|
||||
"typescript": "^5.3.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@changesets/cli": "^2.26.2",
|
||||
"@types/react": "^16.9.35",
|
||||
"@types/react-dom": "^16.9.8",
|
||||
"@umijs/fabric": "^2.3.1",
|
||||
|
7
packages/core/CHANGELOG.md
Normal file
7
packages/core/CHANGELOG.md
Normal file
@ -0,0 +1,7 @@
|
||||
# @antv/g6-core
|
||||
|
||||
## 0.8.24
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Migrate to pnpm manage
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@antv/g6-core",
|
||||
"version": "0.8.23",
|
||||
"version": "0.8.24",
|
||||
"description": "A Graph Visualization Framework in JavaScript",
|
||||
"keywords": [
|
||||
"antv",
|
||||
|
9
packages/element/CHANGELOG.md
Normal file
9
packages/element/CHANGELOG.md
Normal file
@ -0,0 +1,9 @@
|
||||
# @antv/g6-element
|
||||
|
||||
## 0.8.24
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Migrate to pnpm manage
|
||||
- Updated dependencies
|
||||
- @antv/g6-core@0.8.24
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@antv/g6-element",
|
||||
"version": "0.8.23",
|
||||
"version": "0.8.24",
|
||||
"description": "A Graph Visualization Framework in JavaScript",
|
||||
"keywords": [
|
||||
"antv",
|
||||
@ -66,7 +66,6 @@
|
||||
"tslib": "^2.6.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@antv/g6": "4.5.1",
|
||||
"@babel/core": "^7.7.7",
|
||||
"@turf/turf": "^5.1.6",
|
||||
"@types/jest": "^25.2.1",
|
||||
@ -89,5 +88,8 @@
|
||||
"ts-jest": "^24.1.0",
|
||||
"ts-loader": "^7.0.3",
|
||||
"typescript": "^5.3.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@antv/g6": "workspace:*"
|
||||
}
|
||||
}
|
||||
|
9
packages/g6/CHANGELOG.md
Normal file
9
packages/g6/CHANGELOG.md
Normal file
@ -0,0 +1,9 @@
|
||||
# @antv/g6
|
||||
|
||||
## 4.8.24
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Migrate to pnpm manage
|
||||
- Updated dependencies
|
||||
- @antv/g6-pc@0.8.24
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@antv/g6",
|
||||
"version": "4.8.23",
|
||||
"version": "4.8.24",
|
||||
"description": "A Graph Visualization Framework in JavaScript",
|
||||
"keywords": [
|
||||
"antv",
|
||||
|
11
packages/pc/CHANGELOG.md
Normal file
11
packages/pc/CHANGELOG.md
Normal file
@ -0,0 +1,11 @@
|
||||
# @antv/g6-pc
|
||||
|
||||
## 0.8.24
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Migrate to pnpm manage
|
||||
- Updated dependencies
|
||||
- @antv/g6-element@0.8.24
|
||||
- @antv/g6-plugin@0.8.24
|
||||
- @antv/g6-core@0.8.24
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@antv/g6-pc",
|
||||
"version": "0.8.23",
|
||||
"version": "0.8.24",
|
||||
"description": "A Graph Visualization Framework in JavaScript",
|
||||
"keywords": [
|
||||
"antv",
|
||||
|
10
packages/plugin/CHANGELOG.md
Normal file
10
packages/plugin/CHANGELOG.md
Normal file
@ -0,0 +1,10 @@
|
||||
# @antv/g6-plugin
|
||||
|
||||
## 0.8.24
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Migrate to pnpm manage
|
||||
- Updated dependencies
|
||||
- @antv/g6-element@0.8.24
|
||||
- @antv/g6-core@0.8.24
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@antv/g6-plugin",
|
||||
"version": "0.8.23",
|
||||
"version": "0.8.24",
|
||||
"description": "G6 Plugin",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
@ -57,8 +57,10 @@
|
||||
"jest": "^26.6.3",
|
||||
"jquery": "^3.5.1",
|
||||
"rimraf": "^3.0.2",
|
||||
"ts-jest": "^26.4.4",
|
||||
"@antv/g6": "^4.7.10"
|
||||
"ts-jest": "^26.4.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@antv/g6": "workspace:*"
|
||||
},
|
||||
"repository": "https://github.com/antvis/G6.git"
|
||||
}
|
9
packages/react-node/CHANGELOG.md
Normal file
9
packages/react-node/CHANGELOG.md
Normal file
@ -0,0 +1,9 @@
|
||||
# @antv/g6-react-node
|
||||
|
||||
## 1.4.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Migrate to pnpm manage
|
||||
- Updated dependencies
|
||||
- @antv/g6-core@0.8.24
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@antv/g6-react-node",
|
||||
"description": "Using React Component to Define Your G6 Graph Node",
|
||||
"version": "1.4.5",
|
||||
"version": "1.4.6",
|
||||
"scripts": {
|
||||
"start": "dumi dev",
|
||||
"build": "father-build",
|
||||
|
10
packages/site/CHANGELOG.md
Normal file
10
packages/site/CHANGELOG.md
Normal file
@ -0,0 +1,10 @@
|
||||
# @antv/g6-site
|
||||
|
||||
## 4.8.21
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Migrate to pnpm manage
|
||||
- Updated dependencies
|
||||
- @antv/g6@4.8.24
|
||||
- @antv/g6-react-node@1.4.6
|
@ -1 +1 @@
|
||||
g6-v3-2.antv.vision
|
||||
g6-v4.antv.vision
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"private": true,
|
||||
"name": "@antv/g6-site",
|
||||
"version": "4.8.20",
|
||||
"version": "4.8.21",
|
||||
"description": "G6 sites deployed on gh-pages",
|
||||
"keywords": [
|
||||
"antv",
|
||||
@ -39,7 +39,7 @@
|
||||
"@antv/chart-node-g6": "^0.0.3",
|
||||
"@antv/dom-util": "^2.0.4",
|
||||
"@antv/dumi-theme-antv": "^0.4.1",
|
||||
"@antv/g6": "^4.8.20",
|
||||
"@antv/g6": "workspace:*",
|
||||
"@antv/g6-react-node": "workspace:*",
|
||||
"@antv/hierarchy": "^0.6.10",
|
||||
"@antv/layout-wasm": "^1.3.4",
|
||||
|
563
pnpm-lock.yaml
563
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user