Skip to content

Commit 3db1c19

Browse files
committed
format code
1 parent 23bba61 commit 3db1c19

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/integration/src/addFileScope.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,17 @@ export function addFileScope({
3838
source = dedent(`
3939
import { setFileScope, endFileScope } from "@vanilla-extract/css/fileScope";
4040
setFileScope("${normalizedPath}"${
41-
packageName ? `, "${packageName}"` : ''
42-
});
41+
packageName ? `, "${packageName}"` : ''
42+
});
4343
${source}
4444
endFileScope();
4545
`);
4646
} else {
4747
source = dedent(`
4848
const __vanilla_filescope__ = require("@vanilla-extract/css/fileScope");
4949
__vanilla_filescope__.setFileScope("${normalizedPath}"${
50-
packageName ? `, "${packageName}"` : ''
51-
});
50+
packageName ? `, "${packageName}"` : ''
51+
});
5252
${source}
5353
__vanilla_filescope__.endFileScope();
5454
`);

0 commit comments

Comments
 (0)