-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: remote site news, update site deploy
- Loading branch information
Showing
2 changed files
with
8 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,14 +24,16 @@ | |
"license": "MIT", | ||
"author": "https://github.com/orgs/antvis/people", | ||
"scripts": { | ||
"site:build": "dumi build", | ||
"site:develop": "dumi dev", | ||
"site:preview": "dumi preview", | ||
"site:deploy": "npm run site:build && gh-pages -d dist", | ||
"start": "npm run site:develop" | ||
"build": "dumi build", | ||
"develop": "dumi dev", | ||
"preview": "dumi preview", | ||
"deploy": "npm run cname && gh-pages -d dist -r [email protected]:antvis/g6-4.x-site.git", | ||
"start": "npm run site:develop", | ||
"cname": "echo g6.antv.vision > dist/CNAME" | ||
}, | ||
"devDependencies": { | ||
"cross-env": "^7.0.3" | ||
"cross-env": "^7.0.3", | ||
"gh-pages": "^3.0.0" | ||
}, | ||
"dependencies": { | ||
"@ant-design/icons": "^4.0.6", | ||
|