Skip to content

Commit

Permalink
💩 chore(common): add change log generator tool
Browse files Browse the repository at this point in the history
  • Loading branch information
萌萌的老胖子 committed Apr 21, 2020
1 parent 93da02f commit 57df91f
Show file tree
Hide file tree
Showing 3 changed files with 87 additions and 57 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,26 @@
#### 2020-04-21

##### Chores

* 🔀 add GitHub Action to sync Gitee ([79d9d937](https://github.com/antvis/graphin/commit/79d9d93769a9087fd170bb85126a90fc84e590dd))

##### New Features

* **site:** add example/components ([777391b3](https://github.com/antvis/graphin/commit/777391b3ce630898c6e5c1de70054af451f59ccf))
* add base layout example ([e892bf8a](https://github.com/antvis/graphin/commit/e892bf8a8d2b92b4cc48c6c39c81adc1a2b96635))

##### Bug Fixes

* replace tnpm with yarn to avoid ci error ([24682a8b](https://github.com/antvis/graphin/commit/24682a8b321861d8fe90eb2a8841b6d32ef3482e))
* support user defined property in date props ([49d0076f](https://github.com/antvis/graphin/commit/49d0076f77398caa520b36d6631daa8ca853c1b7))
* Support multiple behavior modes closes [#62](https://github.com/antvis/graphin/pull/62) ([f7f88968](https://github.com/antvis/graphin/commit/f7f8896829c8fd5c04c6698d73ed80acb9f201f6))
* **site:** resolve style conflicts [#44](https://github.com/antvis/graphin/pull/44) ([3425139e](https://github.com/antvis/graphin/commit/3425139eef700a10723d5533424de5479fee001a))

##### Other Changes

* **common:**
* support user-defined layout option declaration ([40e9179b](https://github.com/antvis/graphin/commit/40e9179b1c4b28461f9bfb627a5e75da6ef1bd94))
* fix behavior document ([9c863783](https://github.com/antvis/graphin/commit/9c8637831da9cddf10b6d3e14f494dca085d6e23))
* update copyright ([f4cc64f6](https://github.com/antvis/graphin/commit/f4cc64f6e70ac66f0c4f472dd8c3f9556f895797))
* replace graphin studio with graph studio ([0a5182aa](https://github.com/antvis/graphin/commit/0a5182aa1d6dbdc733b7ac05c617ba15b1535af7))

118 changes: 61 additions & 57 deletions package.json
@@ -1,60 +1,64 @@
{
"name": "graphin",
"scripts": {
"start": "lerna run start --parallel --ignore @antv/graphin-studio --ignore graphin-site",
"site": "cd ./packages/graphin-site && npm run start",
"studio": "cd ./packages/graphin-studio && npm run start",
"bootstrap": "lerna bootstrap",
"bootstrap:ci": "lerna bootstrap --ignore @antv/graphin-studio --ignore graphin-site",
"build": "lerna run build",
"contributor": "git-contributor",
"clean": "lerna clean && npm run rm-package-lock",
"rm-package-lock": "rm -rf ./packages/*/package-lock.json",
"list": "lerna list",
"link": "lerna link",
"prettier": "prettier --write './packages/*/src/**/*.??'",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./packages/graphin/src ./packages/graphin-components/src",
"test": "lerna run --stream test",
"ci": "npm run lint && npm run test"
},
"devDependencies": {
"@types/jest": "^24.0.21",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^1.3.1",
"lerna": "^3.15.0",
"lint-staged": "^8.1.0",
"prettier": "~1.18.2",
"typescript": "^3.6.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --ext .js,.jsx,.ts,.tsx",
"prettier --write",
"git add"
]
},
"dependencies": {
"react": "^16.11.0",
"react-dom": "^16.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/antvis/graphin"
"name": "graphin",
"scripts": {
"start": "lerna run start --parallel --ignore @antv/graphin-studio --ignore graphin-site",
"site": "cd ./packages/graphin-site && npm run start",
"studio": "cd ./packages/graphin-studio && npm run start",
"bootstrap": "lerna bootstrap",
"bootstrap:ci": "lerna bootstrap --ignore @antv/graphin-studio --ignore graphin-site",
"build": "lerna run build",
"contributor": "git-contributor",
"clean": "lerna clean && npm run rm-package-lock",
"rm-package-lock": "rm -rf ./packages/*/package-lock.json",
"list": "lerna list",
"link": "lerna link",
"prettier": "prettier --write './packages/*/src/**/*.??'",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./packages/graphin/src ./packages/graphin-components/src",
"test": "lerna run --stream test",
"ci": "npm run lint && npm run test",
"changelog": "generate-changelog"
},
"devDependencies": {
"@types/jest": "^24.0.21",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"conventional-changelog": "^3.1.18",
"conventional-changelog-cli": "^2.0.31",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"generate-changelog": "^1.8.0",
"husky": "^1.3.1",
"lerna": "^3.15.0",
"lint-staged": "^8.1.0",
"prettier": "~1.18.2",
"typescript": "^3.6.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --ext .js,.jsx,.ts,.tsx",
"prettier --write",
"git add"
]
},
"dependencies": {
"react": "^16.11.0",
"react-dom": "^16.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/antvis/graphin"
}
}
Empty file.

0 comments on commit 57df91f

Please sign in to comment.