Skip to content

Commit

Permalink
fix: bump g2plot and fix StackedColumnLine chart name
Browse files Browse the repository at this point in the history
  • Loading branch information
kagawagao committed May 7, 2020
1 parent 9302bfa commit 80d5c9d
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 31 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: build

on: [push]
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Use Node.js 13
- name: Use Node.js
uses: actions/setup-node@v1.1.0
- name: npm install, test and build
run: |
Expand Down
64 changes: 38 additions & 26 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@
"build:types": "tsc",
"build:docs": "dumi build",
"preversion": "npm run build",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"postversion": "npm publish"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
Expand Down Expand Up @@ -77,7 +78,7 @@
"react": "^15.0.0 || ^16.0.0"
},
"dependencies": {
"@antv/g2plot": "^1.1.0"
"@antv/g2plot": "^1.1.1"
},
"husky": {
"hooks": {
Expand Down
2 changes: 1 addition & 1 deletion src/plots/stacked-column-line/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export type StackedColumnLineChartProps = Omit<BaseChartProps, 'chart'> &
StackedColumnLineConfig

const StackedColumnLineChart: FC<StackedColumnLineChartProps> = (props) => {
return <BaseChart chart={StackededColumnLine} {...props} />
return <BaseChart chart={StackedColumnLine} {...props} />
}

export default StackedColumnLineChart

0 comments on commit 80d5c9d

Please sign in to comment.