Skip to content

Commit

Permalink
build: update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
gr2m committed Aug 13, 2020
1 parent 4b94086 commit aa833cb
Show file tree
Hide file tree
Showing 13 changed files with 1,311 additions and 2,556 deletions.
3,730 changes: 1,230 additions & 2,500 deletions package-lock.json

Large diffs are not rendered by default.

46 changes: 23 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,39 +32,39 @@
},
"homepage": "https://github.com/probot/create-probot-app#readme",
"dependencies": {
"chalk": "^4.0.0",
"commander": "^5.0.0",
"chalk": "^4.1.0",
"commander": "^6.0.0",
"conjecture": "^0.1.2",
"cross-spawn": "^7.0.1",
"cross-spawn": "^7.0.3",
"egad": "^0.2.0",
"fs-extra": "^9.0.0",
"inquirer": "^7.0.0",
"jsesc": "^3.0.0",
"fs-extra": "^9.0.1",
"inquirer": "^7.3.3",
"jsesc": "^3.0.1",
"lodash.camelcase": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"simple-git": "^2.0.0",
"simple-git": "^2.17.0",
"stringify-author": "^0.1.3",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.1",
"@types/fs-extra": "^8.0.0",
"@types/inquirer": "^6.5.0",
"@types/jsesc": "^2.5.0",
"@types/cross-spawn": "^6.0.2",
"@types/fs-extra": "^9.0.1",
"@types/inquirer": "^7.3.0",
"@types/jsesc": "^2.5.1",
"@types/lodash.camelcase": "^4.3.6",
"@types/lodash.kebabcase": "^4.1.6",
"@types/node": "^14.0.0",
"@types/rimraf": "^2.0.2",
"@types/shelljs": "^0.8.5",
"@types/node": "^14.0.27",
"@types/rimraf": "^3.0.0",
"@types/shelljs": "^0.8.8",
"@types/validate-npm-package-name": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"eslint": "^6.5.1",
"rimraf": "^3.0.0",
"semantic-release": "^17.0.0",
"shelljs": "^0.8.3",
"ts-node": "^8.4.1",
"tsc-watch": "^4.0.0",
"typescript": "^3.6.4"
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.6.0",
"rimraf": "^3.0.2",
"semantic-release": "^17.1.1",
"shelljs": "^0.8.4",
"ts-node": "^8.10.2",
"tsc-watch": "^4.2.9",
"typescript": "^3.9.7"
}
}
6 changes: 3 additions & 3 deletions src/types/egad.d.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
interface OptionsI {
interface Options {
/**
* Set to `false` to avoid overwriting existing files.
*/
overwrite?: boolean;
}

interface FileResultI {
interface FileResult {
path: string;
skipped: boolean;
}

export function generate(source: string, dest: string, data?: {}, opts?: OptionsI): Promise<FileResultI[]>
export function generate(source: string, dest: string, data?: Record<string, unknown>, opts?: Options): Promise<FileResult[]>
5 changes: 5 additions & 0 deletions templates/basic-js/package-lock.json

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

10 changes: 5 additions & 5 deletions templates/basic-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"probot": "^9.5.3"
"probot": "^9.13.0"
},
"devDependencies": {
"jest": "^24.9.0",
"nock": "^12.0.0",
"nodemon": "^2.0.0",
"jest": "^26.4.0",
"nock": "^13.0.4",
"nodemon": "^2.0.4",
"smee-client": "^1.1.0",
"standard": "^14.3.1"
"standard": "^14.3.4"
},
"engines": {
"node": ">= 8.3.0"
Expand Down
5 changes: 5 additions & 0 deletions templates/basic-ts/package-lock.json

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

20 changes: 10 additions & 10 deletions templates/basic-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,21 @@
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"probot": "^9.5.3"
"probot": "^9.13.0"
},
"devDependencies": {
"@types/jest": "^25.1.0",
"@types/jest": "^26.0.9",
"@types/nock": "^11.1.0",
"@types/node": "^14.0.0",
"@typescript-eslint/parser": "^2.4.0",
"@types/node": "^14.0.27",
"@typescript-eslint/parser": "^3.9.0",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^24.9.0",
"nock": "^12.0.0",
"nodemon": "^2.0.0",
"jest": "^26.4.0",
"nock": "^13.0.4",
"nodemon": "^2.0.4",
"smee-client": "^1.1.0",
"standard": "^14.3.1",
"ts-jest": "^25.1.0",
"typescript": "^3.6.4"
"standard": "^14.3.4",
"ts-jest": "^26.2.0",
"typescript": "^3.9.7"
},
"engines": {
"node": ">= 8.3.0"
Expand Down
5 changes: 5 additions & 0 deletions templates/checks-js/package-lock.json

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

10 changes: 5 additions & 5 deletions templates/checks-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"probot": "^9.5.3"
"probot": "^9.13.0"
},
"devDependencies": {
"jest": "^24.9.0",
"nock": "^12.0.0",
"nodemon": "^2.0.0",
"jest": "^26.4.0",
"nock": "^13.0.4",
"nodemon": "^2.0.4",
"smee-client": "^1.1.0",
"standard": "^14.3.1"
"standard": "^14.3.4"
},
"engines": {
"node": ">= 8.3.0"
Expand Down
5 changes: 5 additions & 0 deletions templates/deploy-js/package-lock.json

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

10 changes: 5 additions & 5 deletions templates/deploy-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"probot": "^9.5.3"
"probot": "^9.13.0"
},
"devDependencies": {
"jest": "^24.9.0",
"nock": "^12.0.0",
"nodemon": "^2.0.0",
"jest": "^26.4.0",
"nock": "^13.0.4",
"nodemon": "^2.0.4",
"smee-client": "^1.1.0",
"standard": "^14.3.1"
"standard": "^14.3.4"
},
"engines": {
"node": ">= 8.3.0"
Expand Down
5 changes: 5 additions & 0 deletions templates/git-data-js/package-lock.json

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

10 changes: 5 additions & 5 deletions templates/git-data-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"probot": "^9.5.3"
"probot": "^9.13.0"
},
"devDependencies": {
"jest": "^24.9.0",
"nock": "^12.0.0",
"nodemon": "^2.0.0",
"jest": "^26.4.0",
"nock": "^13.0.4",
"nodemon": "^2.0.4",
"smee-client": "^1.1.0",
"standard": "^14.3.1"
"standard": "^14.3.4"
},
"engines": {
"node": ">= 8.3.0"
Expand Down

0 comments on commit aa833cb

Please sign in to comment.