Skip to content

Commit

Permalink
chore: improve readability for path strings (#5805)
Browse files Browse the repository at this point in the history
This addresses the feedback from #5762 (comment).
  • Loading branch information
mathiasbynens committed May 5, 2020
1 parent d8d1f6f commit eed7d94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/protocol-types-generator/index.js
Expand Up @@ -77,7 +77,7 @@ export default Protocol;
return {output, version};
});

const protocolOutputPath = path.join(__dirname, '..', '..', 'src', 'protocol.d.ts');
const protocolOutputPath = path.join(__dirname, '../../src/protocol.d.ts');
const relativeProtocolOutputPath = path.relative(process.cwd(), protocolOutputPath);

const writeOutputToDisk = ({output, version}) => {
Expand Down

0 comments on commit eed7d94

Please sign in to comment.