Skip to content

Commit 96c7866

Browse files
authored
v0.12.1
* chore(deps): update dev deps including babel
1 parent 05ba0b0 commit 96c7866

File tree

3 files changed

+191
-107
lines changed

3 files changed

+191
-107
lines changed

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "firebase-ci",
3-
"version": "0.12.0",
3+
"version": "0.12.1",
44
"description": "Simplified Firebase interaction for continuous integration including deploying hosting, functions, and database/storage rules.",
55
"main": "lib/index.js",
66
"bin": {
@@ -67,40 +67,40 @@
6767
"dependencies": {
6868
"chalk": "^3.0.0",
6969
"command-exists": "^1.2.8",
70-
"commander": "^4.0.1",
70+
"commander": "^4.1.0",
7171
"figures": "^3.1.0",
7272
"lodash": "^4.17.15"
7373
},
7474
"devDependencies": {
75-
"@babel/cli": "^7.8.3",
76-
"@babel/core": "^7.8.3",
75+
"@babel/cli": "^7.8.4",
76+
"@babel/core": "^7.8.4",
7777
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
78-
"@babel/preset-env": "^7.8.3",
78+
"@babel/preset-env": "^7.8.4",
7979
"@babel/register": "^7.8.3",
8080
"babel-eslint": "^10.0.3",
8181
"babel-plugin-lodash": "^3.3.4",
8282
"babel-plugin-module-resolver": "^4.0.0",
8383
"chai": "^4.2.0",
8484
"chai-files": "^1.4.0",
8585
"codecov": "^3.6.1",
86-
"cross-env": "^6.0.3",
86+
"cross-env": "^7.0.0",
8787
"env-cmd": "^10.0.1",
8888
"eslint": "^6.8.0",
89-
"eslint-config-prettier": "^6.9.0",
89+
"eslint-config-prettier": "^6.10.0",
9090
"eslint-config-standard": "^14.1.0",
9191
"eslint-plugin-babel": "^5.3.0",
9292
"eslint-plugin-import": "^2.20.0",
93-
"eslint-plugin-jsdoc": "^20.3.1",
93+
"eslint-plugin-jsdoc": "^21.0.0",
9494
"eslint-plugin-node": "^11.0.0",
95-
"eslint-plugin-prettier": "^3.1.0",
96-
"eslint-plugin-promise": "^4.2.0",
97-
"eslint-plugin-standard": "^4.0.0",
98-
"husky": "^4.0.10",
95+
"eslint-plugin-prettier": "^3.1.2",
96+
"eslint-plugin-promise": "^4.2.1",
97+
"eslint-plugin-standard": "^4.0.1",
98+
"husky": "^4.2.1",
9999
"mocha": "^7.0.0",
100100
"nyc": "^15.0.0",
101101
"prettier": "^1.19.1",
102-
"rimraf": "^3.0.0",
103-
"sinon": "^8.1.0",
102+
"rimraf": "^3.0.1",
103+
"sinon": "^8.1.1",
104104
"sinon-chai": "^3.4.0"
105105
}
106106
}

src/utils/ci.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { get } from 'lodash'
22
import { shellescape, runCommand } from './commands'
3-
import { warn, log } from './logger'
3+
import { warn, error } from './logger'
44
import { getFile } from './files'
55

66
/**
@@ -155,7 +155,10 @@ async function getCommitMessage() {
155155
})
156156
return commandResults
157157
} catch (err) {
158-
error(`Error getting commit message through git log for SHA: ${process.env.GITHUB_SHA}`, err)
158+
error(
159+
`Error getting commit message through git log for SHA: ${process.env.GITHUB_SHA}`,
160+
err
161+
)
159162
return null
160163
}
161164
}

0 commit comments

Comments
 (0)