1
0
Fork 0

fix(lint): indentation in version metadata

This commit is contained in:
Sean Sube 2022-02-03 09:05:58 -06:00
parent 2893437718
commit 8d8d3da841
1 changed files with 8 additions and 7 deletions

View File

@ -1,15 +1,16 @@
/* eslint-disable no-template-curly-in-string */
export const VERSION_INFO = {
build: {
job: '${BUILD_JOB}',
node: '${NODE_VERSION}',
runner: '${BUILD_RUNNER}',
job: '${BUILD_JOB}',
node: '${NODE_VERSION}',
runner: '${BUILD_RUNNER}',
},
git: {
branch: '${GIT_BRANCH}',
commit: '${GIT_COMMIT}',
branch: '${GIT_BRANCH}',
commit: '${GIT_COMMIT}',
},
package: {
name: '${PACKAGE_NAME}',
version: '${PACKAGE_VERSION}',
name: '${PACKAGE_NAME}',
version: '${PACKAGE_VERSION}',
},
};