Skip to content
This repository was archived by the owner on Sep 21, 2022. It is now read-only.

Commit 9d7d337

Browse files
authored
Merge pull request #804 from gemini-testing/update/configparser
update configparser version to 0.4.0
2 parents 4dd8744 + 4c70908 commit 9d7d337

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

β€Žlib/config/options.jsβ€Ž

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const util = require('./util');
88

99
const browserOptions = require('./browser-options');
1010
const coreOptions = require('gemini-core').config.options;
11+
const ENV_PREFIX = `${require('../../package').name}_`;
1112

1213
const is = util.is;
1314
const anyObject = util.anyObject;
@@ -104,5 +105,6 @@ module.exports = root(
104105
sets: coreOptions.sets,
105106

106107
browsers: map(section(browserOptions.getPerBrowser()))
107-
}))
108+
})),
109+
{envPrefix: ENV_PREFIX}
108110
);

β€Žpackage.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"css": "^2.1.0",
2020
"debug": "^2.2.0",
2121
"fs-extra": "^0.30.0",
22-
"gemini-configparser": "^0.1.1",
22+
"gemini-configparser": "^0.4.0",
2323
"gemini-core": "^1.3.0",
2424
"gemini-coverage": "^1.0.0",
2525
"graceful-fs": "^4.1.11",

0 commit comments

Comments
Β (0)