[Gekidou] Update dependencies (#6305)

* Update dependencies

* Fix iOS build

* update fastlane
This commit is contained in:
Elias Nahum
2022-05-24 08:47:12 -04:00
committed by GitHub
parent a4e4e18445
commit 19ecc150b6
17 changed files with 10760 additions and 6673 deletions

12
test/file_transformer.js Normal file
View File

@@ -0,0 +1,12 @@
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
const path = require('path');
module.exports = {
process(sourceText, sourcePath) {
return {
code: `module.exports = ${JSON.stringify(path.basename(sourcePath))};`,
};
},
};