-
-
Notifications
You must be signed in to change notification settings - Fork 601
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: migrate on message api for postcss-icss-plugin (#838)
- Loading branch information
1 parent
476ebca
commit 9eaba66
Showing
6 changed files
with
147 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,33 @@ | ||
@import url(test-other.css) (min-width: 100px); | ||
|
||
@value def from './values.css'; | ||
@value other from './values.css'; | ||
@value other from './values.css'; | ||
@value something from './something.css'; | ||
@value foo: blue; | ||
@value bar: block; | ||
|
||
.ghi { | ||
color: def; | ||
} | ||
|
||
.class { | ||
color: foo; | ||
} | ||
|
||
.other { | ||
display: bar; | ||
} | ||
|
||
.other-other { | ||
width: something; | ||
} | ||
|
||
.green { | ||
color: other; | ||
} | ||
|
||
.foo { | ||
prop: def; | ||
duplicate: other; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@value something: 2112moon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
@value def: red; | ||
@value other: green; |