Skip to content
This repository was archived by the owner on May 5, 2024. It is now read-only.

Commit 16df2bc

Browse files
committed
#324: Allow usage of @sveltejs/[email protected]
1 parent 33922e1 commit 16df2bc

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

__run.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,42 +10,42 @@ export const run = async ({ install, updateCss }) => {
1010
new AtRule({
1111
name: "import",
1212
params: '"bootstrap/scss/functions"',
13-
})
13+
}),
1414
);
1515
postcss.append(
1616
new Comment({
1717
text: "Override Bootstrap's variables here",
18-
})
18+
}),
1919
);
2020
postcss.append(
2121
new AtRule({
2222
name: "import",
2323
params: '"bootstrap/scss/variables"',
24-
})
24+
}),
2525
);
2626
postcss.append(
2727
new AtRule({
2828
name: "import",
2929
params: '"bootstrap/scss/variables-dark"',
30-
})
30+
}),
3131
);
3232
postcss.append(
3333
new AtRule({
3434
name: "import",
3535
params: '"bootstrap/scss/maps"',
36-
})
36+
}),
3737
);
3838
postcss.append(
3939
new AtRule({
4040
name: "import",
4141
params: '"bootstrap/scss/mixins"',
42-
})
42+
}),
4343
);
4444
postcss.append(
4545
new AtRule({
4646
name: "import",
4747
params: '"bootstrap/scss/utilities"',
48-
})
48+
}),
4949
);
5050

5151
return {

0 commit comments

Comments
 (0)