Skip to content

Commit

Permalink
chore: upgraded all packages to the latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
volodymyr-ladnik-ck committed Mar 28, 2019
1 parent 61972a4 commit 4f7ba15
Show file tree
Hide file tree
Showing 4 changed files with 5,276 additions and 3,723 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Expand Up @@ -10,12 +10,12 @@ jobs:
- checkout
# Restore node_modules
- restore_cache:
key: v1-js-dependencies-{{ checksum "yarn.lock" }}
key: v2-js-dependencies-{{ checksum "yarn.lock" }}
# Install dependencies
- run: yarn install --frozen-lockfile
# Save cache
- save_cache:
key: v1-js-dependencies-{{ checksum "yarn.lock" }}
key: v2-js-dependencies-{{ checksum "yarn.lock" }}
paths:
- node_modules
# Setup packages
Expand Down
62 changes: 31 additions & 31 deletions package.json
Expand Up @@ -28,49 +28,49 @@
"@creditkarma/mimic-graphql": "2.2.0",
"@creditkarma/mimic-rest": "2.2.0",
"@creditkarma/mimic-thrift": "2.2.0",
"electron-log": "^2.2.17",
"electron-updater": "^3.0.3",
"source-map-support": "^0.5.0"
"electron-log": "^3.0.4",
"electron-updater": "^4.0.6",
"source-map-support": "^0.5.11"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/config-lerna-scopes": "^7.2.1",
"@types/jest": "^23.1.3",
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@commitlint/config-lerna-scopes": "^7.5.1",
"@types/jest": "^24.0.11",
"@types/prismjs": "^1.16.0",
"@types/react": "^16.0.35",
"@types/react-dom": "^16.0.3",
"@types/react-redux": "^6.0.5",
"@types/react-router-dom": "^4.2.3",
"@types/react-dom": "^16.8.3",
"@types/react-redux": "^7.0.5",
"@types/react-router-dom": "^4.3.1",
"@types/react-test-renderer": "^16.8.1",
"@types/react-virtualized": "^9.18.7",
"@types/react-virtualized": "^9.21.0",
"@types/semver": "^5.5.0",
"antd": "^3.1.4",
"antd": "^3.15.2",
"cz-conventional-changelog": "^2.1.0",
"electron": "^3.0.5",
"electron-builder": "^20.28.4",
"electron": "^4.1.1",
"electron-builder": "^20.39.0",
"electron-devtools-installer": "^2.2.4",
"electron-webpack": "2.2.1",
"electron-webpack-ts": "^2.0.2",
"husky": "^1.1.2",
"jest": "^23.2.0",
"jest-junit": "^5.2.0",
"lerna": "^3.0.0-rc.0",
"electron-webpack": "2.6.2",
"electron-webpack-ts": "^3.1.1",
"husky": "^1.3.1",
"jest": "^24.5.0",
"jest-junit": "^6.3.0",
"lerna": "^3.13.1",
"prismjs": "^1.16.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^6.0.1",
"react-router-dom": "^5.0.0",
"react-simple-code-editor": "0.9.7",
"react-test-renderer": "^16.8.6",
"react-virtualized": "^9.20.1",
"redux": "^3.7.2",
"react-virtualized": "^9.21.0",
"redux": "^4.0.1",
"request": "^2.88.0",
"ts-import-plugin": "^1.4.3",
"ts-jest": "^23.0.1",
"tsconfig-paths": "^3.1.3",
"typescript": "^3.0.1",
"webpack": "^4.16.4"
"ts-import-plugin": "^1.5.5",
"ts-jest": "^24.0.0",
"tsconfig-paths": "^3.8.0",
"typescript": "^3.3.4000",
"webpack": "^4.29.6"
},
"workspaces": [
"packages/*"
Expand Down
3 changes: 2 additions & 1 deletion packages/mimic-core/src/__tests__/service_manager.test.ts
Expand Up @@ -3,9 +3,10 @@ jest.mock("../config");
import { IServiceJson, IServiceProvider, ServiceManager } from "../service_manager";
import { IUniq } from "../utils";

const TestProvider = jest.fn<IServiceProvider>(() => ({
const TestProvider = jest.fn<IServiceProvider, any>(() => ({
create: jest.fn(),
add: jest.fn(),
emit: jest.fn(),
on: jest.fn(),
}));

Expand Down

0 comments on commit 4f7ba15

Please sign in to comment.