Skip to content

Commit

Permalink
chore: upgrade all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinCK committed Dec 25, 2020
1 parent 97e9b10 commit ef2869c
Show file tree
Hide file tree
Showing 3 changed files with 750 additions and 751 deletions.
62 changes: 31 additions & 31 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"clean": "trash dist",
"lint:fix": "prettier src/**/*.ts --write && tslint --fix --project .",
"lint": "tslint --project . && prettier src/**/*.ts --list-different",
"test": "nyc mocha",
"test": "nyc mocha 'test/**/*.ts'",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"commit": "npx git-cz"
Expand All @@ -39,58 +39,58 @@
"homepage": "https://github.com/RobinCK/typeorm-fixtures#readme",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/chalk": "^2.2.0",
"@types/cli-progress": "^3.7.0",
"@types/cli-progress": "^3.8.0",
"@types/commander": "^2.12.2",
"@types/ejs": "^3.0.4",
"@types/faker": "^4.1.11",
"@types/glob": "^7.1.1",
"@types/js-yaml": "^3.12.3",
"@types/lodash": "^4.14.150",
"@types/mocha": "^7.0.2",
"@types/ejs": "^3.0.5",
"@types/faker": "^5.1.5",
"@types/glob": "^7.1.3",
"@types/js-yaml": "^3.12.5",
"@types/lodash": "^4.14.166",
"@types/mocha": "^8.2.0",
"@types/resolve-from": "^5.0.0",
"@types/yargs-parser": "^15.0.0",
"@types/yargs-parser": "^20.2.0",
"chai-as-promised": "^7.1.1",
"commitizen": "^4.1.2",
"conventional-changelog-cli": "^2.0.21",
"commitizen": "^4.2.2",
"conventional-changelog-cli": "^2.1.1",
"coveralls": "^3.0.4",
"cz-conventional-changelog": "^3.2.0",
"husky": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.3.6",
"jsonlint": "^1.6.3",
"lint-staged": "^10.2.6",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"lint-staged": "^10.5.3",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"trash-cli": "^4.0.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-immutable": "^6.0.1",
"typeorm": "^0.2.29",
"typescript": "^3.5.3",
"typescript": "^4.1.3",
"yaml-lint": "^1.2.4"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@types/hapi__joi": "^17.1.0",
"chai": "^4.2.0",
"chalk": "^4.0.0",
"chalk": "^4.1.0",
"class-transformer": "^0.3.1",
"cli-progress": "^3.0.0",
"commander": "^5.1.0",
"ejs": "^3.1.3",
"faker": "^4.1.0",
"commander": "^6.2.1",
"ejs": "^3.1.5",
"faker": "^5.1.0",
"glob": "^7.1.6",
"js-yaml": "3.14.0",
"lodash": "^4.17.14",
"opencollective-postinstall": "^2.0.2",
"js-yaml": "3.14.1",
"lodash": "^4.17.20",
"opencollective-postinstall": "^2.0.3",
"reflect-metadata": "^0.1.13",
"resolve-from": "^5.0.0",
"yargs-parser": "^18.1.3"
"yargs-parser": "^20.2.4"
},
"peerDependencies": {
"typeorm": "^0.2.11"
Expand Down
2 changes: 1 addition & 1 deletion src/loaders/YamlLoader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ export class YamlLoader implements ILoader {
* @return {IFixturesConfig}
*/
load(filePath: string): IFixturesConfig {
return yaml.safeLoad(fs.readFileSync(filePath).toString());
return yaml.safeLoad(fs.readFileSync(filePath).toString()) as IFixturesConfig;
}
}
Loading

0 comments on commit ef2869c

Please sign in to comment.