We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34d32d9 commit 1972adcCopy full SHA for 1972adc
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "pri",
3
- "version": "0.10.1",
+ "version": "0.10.2",
4
"types": "src/node/index.ts",
5
"main": "built/node/index.js",
6
"scripts": {
src/built-in-plugins/command-test/index.ts
@@ -37,7 +37,12 @@ export const CommandTest = async (instance: typeof pri) => {
37
execSync(`${findNearestNodemodulesFile('.bin/rimraf')} ${path.join(instance.projectRootPath, '.nyc_output')}`);
38
39
// Open test html in brower
40
- open(path.join(instance.projectRootPath, 'coverage/lcov-report/index.html'));
+ log(
41
+ `Open this url to see code coverage: file:///${path.join(
42
+ instance.projectRootPath,
43
+ 'coverage/lcov-report/index.html'
44
+ )}`
45
+ );
46
47
process.exit(0);
48
};
0 commit comments