Skip to content

Commit d00253d

Browse files
committed
fix: Fix reference to 3rd party styles in stylesheets.
Since latest scss build tools which became available in `@patternslib/dev` version 3.6 references to `node_modules` need to be left out. The build tool searches in node_modules anyways. This is now fixed.
1 parent 141f9aa commit d00253d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/pat/colour-picker/_colour-picker.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
@charset "UTF-8";
2-
@import "node_modules/spectrum-colorpicker/spectrum";
2+
3+
@import "spectrum-colorpicker/spectrum";
34

45
.checkNative,
56
.checkPattern {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
@charset "UTF-8";
2-
@import "node_modules/pikaday/scss/pikaday.scss";
2+
@import "pikaday/scss/pikaday.scss";

0 commit comments

Comments
 (0)