-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
APIDB-5731 Update packages and add Vlt-Table features (#63)
APIDB-5731 Update packages and add Vlt-Table features (#63)
- Loading branch information
Showing
87 changed files
with
13,212 additions
and
11,808 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"singleQuote": true, | ||
"trailingComma": "es5", | ||
"arrowParens": "always" | ||
} | ||
"singleQuote": true, | ||
"printWidth": 120, | ||
"vueIndentScriptAndStyle": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
module.exports = { | ||
presets: [ | ||
[ | ||
'@babel/preset-env', | ||
{ | ||
targets: { | ||
esmodules: true, | ||
}, | ||
}, | ||
], | ||
], | ||
}; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/** | ||
* Mock the time zone so that running tests on a local computer | ||
* and on Jenkins yields the same time zone | ||
*/ | ||
|
||
process.env.TZ = 'UTC'; | ||
|
||
module.exports = { | ||
testEnvironment: 'node', | ||
setupFiles: ['<rootDir>/testSetup.js'], | ||
moduleFileExtensions: ['js', 'vue'], | ||
transform: { | ||
'.*\\.(vue)$': 'vue-jest', | ||
'^.+\\.js$': 'babel-jest', | ||
}, | ||
collectCoverage: false, | ||
coverageDirectory: 'coverage-frontend', | ||
collectCoverageFrom: ['**/components/**/*.vue', '!**/node_modules/**'], | ||
coverageReporters: ['json-summary', 'text', 'lcov'], | ||
snapshotSerializers: ['jest-serializer-vue'], | ||
watchPathIgnorePatterns: ['node_modules'], | ||
}; |
Oops, something went wrong.