Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
plantain-00 committed May 29, 2020
1 parent 68a15f6 commit 3d4d098
Show file tree
Hide file tree
Showing 6 changed files with 342 additions and 386 deletions.
1 change: 1 addition & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"@typescript-eslint/explicit-member-accessibility": "off",
"@typescript-eslint/no-parameter-properties": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/ban-types": "off",
"no-case-declarations": "off",
"no-console": "off",
"plantain/promise-not-await": "error"
Expand Down
36 changes: 18 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,45 +28,45 @@
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@rollup/plugin-commonjs": "11.1.0",
"@rollup/plugin-node-resolve": "7.1.3",
"@rollup/plugin-commonjs": "12.0.0",
"@rollup/plugin-node-resolve": "8.0.0",
"@types/jasmine": "3.5.10",
"@types/node": "14.0.1",
"@types/puppeteer": "2.1.0",
"@typescript-eslint/eslint-plugin": "2.33.0",
"@typescript-eslint/parser": "2.33.0",
"autoprefixer": "9.7.6",
"@types/node": "14.0.5",
"@types/puppeteer": "3.0.0",
"@typescript-eslint/eslint-plugin": "3.0.0",
"@typescript-eslint/parser": "3.0.0",
"autoprefixer": "9.8.0",
"clean-css-cli": "4.3.0",
"clean-scripts": "1.13.1",
"clean-scripts": "1.15.0",
"cross-env": "7.0.2",
"eslint": "7.0.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-plantain": "1.0.0",
"file2variable-cli": "1.10.0",
"file2variable-cli": "1.10.1",
"github-fork-ribbon-css": "0.2.3",
"http-server": "0.12.3",
"image2base64-cli": "2.3.3",
"jasmine": "3.5.0",
"karma": "5.0.5",
"karma": "5.0.9",
"karma-chrome-launcher": "3.1.0",
"karma-firefox-launcher": "1.3.0",
"karma-jasmine": "3.1.1",
"karma-webpack": "4.0.2",
"lerna": "3.21.0",
"less": "3.11.1",
"markdownlint-cli": "0.23.0",
"markdownlint-cli": "0.23.1",
"no-unused-export": "1.10.3",
"postcss-cli": "7.1.1",
"puppeteer": "3.0.4",
"rev-static": "3.5.0",
"puppeteer": "3.1.0",
"rev-static": "3.5.1",
"rimraf": "3.0.2",
"rollup": "2.10.2",
"rollup": "2.10.7",
"rollup-plugin-uglify": "6.0.4",
"stylelint": "13.3.3",
"stylelint": "13.5.0",
"stylelint-config-standard": "20.0.0",
"type-coverage": "2.6.0",
"typescript": "3.9.2",
"watch-then-execute": "1.1.3",
"type-coverage": "2.6.1",
"typescript": "3.9.3",
"watch-then-execute": "1.1.4",
"webpack": "4.43.0",
"webpack-cli": "3.3.11"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
"dist"
],
"dependencies": {
"tslib": "1"
"tslib": "2"
}
}
2 changes: 1 addition & 1 deletion packages/react/demo/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ for (const tree of data8) {

const CustomNode: React.StatelessComponent<{ data: TreeData<Value> }> = props => <span><span style={{ color: 'red' }}>{props.data.value!.id}</span>{props.data.text}</span >

class Main extends React.Component<{}, {
class Main extends React.Component<unknown, {
data: TreeData<Value>[],
selectedId: number | null,
data2: TreeData<Value>[],
Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
"tree-component": "^5.9.0"
},
"devDependencies": {
"@types/react": "16.9.34",
"@types/react-dom": "16.9.7",
"@types/react": "16.9.35",
"@types/react-dom": "16.9.8",
"react-dom": "16.13.1"
}
}

0 comments on commit 3d4d098

Please sign in to comment.