-
-
Notifications
You must be signed in to change notification settings - Fork 75
postcss-custom-media & css-tokenizer & media query parser #627
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 65 commits
cfae0fc
f34facb
05fab68
b47fdb4
46fdd6a
c46d7ac
151cf48
c2605a8
4fee273
183e592
c8e40fd
4607b26
0ee101b
59b89ab
31eacbe
73e4663
35fd6f7
4d6670d
42a9dd5
2c9a55e
d21afe5
6954800
138262f
acac677
bfae4bc
624e25d
9daa9fd
e5a82b8
d2f4ac7
d2b91e1
2dfec30
994adcd
0c36dc6
ac2010f
90d2738
41252b3
2ba6c3e
1c2d728
ec6a7f9
0a5ec17
3357c4a
fa6090c
97a19b4
7ae4225
d5124f2
ce1a97c
b3746da
4a243d0
8ba7294
67db0ec
305aaeb
bc648cd
c4243e3
7fb2fc7
8145d49
9c3c644
8d7f867
892e145
0f8be34
6f2f13a
8ef04ce
06f1a2a
d2fe1cf
68d1778
21b126a
f37db29
1222b53
b386d3e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,9 @@ | |
"node": "^14 || ^16 || >=18" | ||
}, | ||
"workspaces": [ | ||
"packages/css-tokenizer", | ||
"packages/css-parser-algorithms", | ||
"packages/media-query-list-parser", | ||
"packages/*", | ||
Comment on lines
+12
to
15
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Given L15, do we need to specify in particular? I notice we have progressive too so I wasn't sure. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a "hack" to specify the build and test order. |
||
"plugins/postcss-progressive-custom-properties", | ||
"plugins/*", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
node_modules | ||
package-lock.json | ||
yarn.lock | ||
*.result.css | ||
*.result.css.map | ||
*.result.json | ||
dist/* |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v16.13.1 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
### 1.0.0 | ||
|
||
- Initial version |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright 2022 Romain Menke, Antonio Laguna <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
this software and associated documentation files (the "Software"), to deal in | ||
the Software without restriction, including without limitation the rights to | ||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | ||
the Software, and to permit persons to whom the Software is furnished to do so, | ||
subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
Uh oh!
There was an error while loading. Please reload this page.