Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all deps #345

Merged
merged 3 commits into from
Jun 2, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore(deps): update all deps
  • Loading branch information
antfu committed May 31, 2020
commit 95731ab6deeb3e52d4b1262a5a5372672d9ba5d3
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,29 +35,29 @@
},
"homepage": "https://github.com/vuejs/composition-api#readme",
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.2",
"cross-env": "^5.2.0",
"husky": "^2.7.0",
"jest": "^24.8.0",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"rollup": "^1.12.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript2": "^0.21.0",
"ts-jest": "^24.0.2",
"typescript": "^3.6.2",
"vue": "^2.5.22",
"vue-router": "^3.1.3",
"vue-server-renderer": "^2.6.10"
"@rollup/plugin-node-resolve": "8.0.0",
"@rollup/plugin-replace": "^2.3.2",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.6",
"cross-env": "^7.0.2",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.7",
"prettier": "^2.0.5",
"rollup": "^2.12.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"ts-jest": "^26.1.0",
"typescript": "^3.9.3",
"vue": "^2.6.11",
"vue-router": "^3.3.2",
"vue-server-renderer": "^2.6.11"
},
"peerDependencies": {
"vue": "^2.5.22"
"vue": "^2.5.11"
},
"dependencies": {
"tslib": "^1.9.3"
"tslib": "^2.0.0"
},
"husky": {
"hooks": {
Expand Down
6 changes: 3 additions & 3 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import * as path from 'path';
// import filesize from 'rollup-plugin-filesize';
import typescript from 'rollup-plugin-typescript2';
import resolve from 'rollup-plugin-node-resolve';
import resolve from '@rollup/plugin-node-resolve';
import { terser } from 'rollup-plugin-terser';
import replace from 'rollup-plugin-replace';
import replace from '@rollup/plugin-replace';

const builds = {
'cjs-dev': {
Expand Down Expand Up @@ -34,7 +34,7 @@ const builds = {
};

function getAllBuilds() {
return Object.keys(builds).map(key => genConfig(builds[key]));
return Object.keys(builds).map((key) => genConfig(builds[key]));
}

function genConfig({ outFile, format, mode }) {
Expand Down
Loading