backend-manager 5.0.119 → 5.0.121
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -10,14 +10,14 @@ class RemoteconfigTemplateFileTest extends BaseTest {
|
|
|
10
10
|
|
|
11
11
|
async run() {
|
|
12
12
|
const self = this.self;
|
|
13
|
-
const exists = jetpack.exists(`${self.firebaseProjectPath}/
|
|
13
|
+
const exists = jetpack.exists(`${self.firebaseProjectPath}/remoteconfig.template.json`);
|
|
14
14
|
return exists;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
async fix() {
|
|
18
18
|
const self = this.self;
|
|
19
19
|
const name = 'remoteconfig.template.json';
|
|
20
|
-
const filePath = `${self.firebaseProjectPath}
|
|
20
|
+
const filePath = `${self.firebaseProjectPath}/${name}`;
|
|
21
21
|
const exists = jetpack.exists(filePath);
|
|
22
22
|
let contents = jetpack.read(filePath) || '';
|
|
23
23
|
|