Skip to content

Commit

Permalink
fix(cli-sense): fix path injection on windows (#497)
Browse files Browse the repository at this point in the history
fixes #482, fixes #489
  • Loading branch information
miralemd committed Aug 20, 2020
1 parent 3cf4b2c commit 9e7af32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/sense/lib/build-legacy.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ async function build(argv) {
plugins: [
replace({
__SN_DEF__: `${relativeMainFile}`,
__EXT_DEF__: `${extDefinition}`,
__EXT_DEF__: `${extDefinition.replace(/\\/g, '/')}`,
}),
nodeResolve(),
common(),
Expand Down

0 comments on commit 9e7af32

Please sign in to comment.