Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
romainmenke committed Sep 15, 2024
1 parent 4d8d755 commit 75e5ded
Show file tree
Hide file tree
Showing 15 changed files with 833 additions and 3,322 deletions.
994 changes: 222 additions & 772 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/media-query-list-parser/dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ export declare class MediaQueryWithType {
mediaType: Array<CSSToken>;
and: Array<CSSToken> | undefined;
media: MediaCondition | undefined;
constructor(modifier: Array<CSSToken>, mediaType: Array<CSSToken>, and?: Array<CSSToken> | undefined, media?: MediaCondition | undefined);
constructor(modifier: Array<CSSToken>, mediaType: Array<CSSToken>, and?: Array<CSSToken>, media?: MediaCondition);
getModifier(): string;
negateQuery(): MediaQuery;
getMediaType(): string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15202,7 +15202,7 @@
},
{
"kind": "Content",
"text": "> | undefined"
"text": ">"
},
{
"kind": "Content",
Expand All @@ -15213,10 +15213,6 @@
"text": "MediaCondition",
"canonicalReference": "@csstools/media-query-list-parser!MediaCondition:class"
},
{
"kind": "Content",
"text": " | undefined"
},
{
"kind": "Content",
"text": ");"
Expand Down Expand Up @@ -15254,7 +15250,7 @@
"parameterName": "media",
"parameterTypeTokenRange": {
"startIndex": 16,
"endIndex": 18
"endIndex": 17
},
"isOptional": true
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Constructs a new instance of the `MediaQueryWithType` class
**Signature:**

```typescript
constructor(modifier: Array<CSSToken>, mediaType: Array<CSSToken>, and?: Array<CSSToken> | undefined, media?: MediaCondition | undefined);
constructor(modifier: Array<CSSToken>, mediaType: Array<CSSToken>, and?: Array<CSSToken>, media?: MediaCondition);
```

## Parameters
Expand Down Expand Up @@ -65,7 +65,7 @@ and

</td><td>

Array&lt;CSSToken&gt; \| undefined
Array&lt;CSSToken&gt;


</td><td>
Expand All @@ -81,7 +81,7 @@ media

</td><td>

[MediaCondition](./media-query-list-parser.mediacondition.md) \| undefined
[MediaCondition](./media-query-list-parser.mediacondition.md)


</td><td>
Expand Down
2 changes: 1 addition & 1 deletion packages/media-query-list-parser/src/nodes/media-query.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class MediaQueryWithType {
and: Array<CSSToken> | undefined = undefined;
media: MediaCondition | undefined = undefined;

constructor(modifier: Array<CSSToken>, mediaType: Array<CSSToken>, and?: Array<CSSToken> | undefined, media?: MediaCondition | undefined) {
constructor(modifier: Array<CSSToken>, mediaType: Array<CSSToken>, and?: Array<CSSToken>, media?: MediaCondition) {
this.modifier = modifier;
this.mediaType = mediaType;

Expand Down
2 changes: 1 addition & 1 deletion plugins/postcss-cascade-layers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"postcss": "^8.4"
},
"devDependencies": {
"@csstools/postcss-bundler": "^1.0.3",
"@csstools/postcss-bundler": "*",
"@csstools/postcss-tape": "*",
"puppeteer": "^23.3.0"
},
Expand Down
2 changes: 1 addition & 1 deletion plugins/postcss-color-function/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
},
"devDependencies": {
"@csstools/postcss-tape": "*",
"postcss-lab-function": "^6.0.0"
"postcss-lab-function": "*"
},
"scripts": {
"build": "rollup -c ../../rollup/default.mjs",
Expand Down
2 changes: 1 addition & 1 deletion plugins/postcss-custom-properties/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"postcss": "^8.4"
},
"devDependencies": {
"@csstools/postcss-bundler": "^1.0.3",
"@csstools/postcss-bundler": "*",
"@csstools/postcss-tape": "*"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion plugins/postcss-design-tokens/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"postcss": "^8.4"
},
"devDependencies": {
"@csstools/postcss-bundler": "^1.0.3",
"@csstools/postcss-bundler": "*",
"@csstools/postcss-tape": "*",
"style-dictionary-design-tokens-example": "^1.1.0"
},
Expand Down
10 changes: 5 additions & 5 deletions postcss-recipes/minimal-setup/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
"description": "",
"license": "MIT-0",
"engines": {
"node": "^14 || ^16 || >=18"
"node": ">=18"
},
"devDependencies": {
"@csstools/postcss-bundler": "^1.0.2",
"@csstools/postcss-minify": "^1.0.0",
"postcss-cli": "^10.1.0",
"postcss-preset-env": "^9.3.0"
"@csstools/postcss-bundler": "^2.0.1",
"@csstools/postcss-minify": "^2.0.1",
"postcss-cli": "^11.0.0",
"postcss-preset-env": "^10.0.3"
},
"scripts": {
"build": "NODE_ENV=production postcss ./src/css/style.css -o ./dist/css/style.css",
Expand Down
18 changes: 9 additions & 9 deletions postcss-recipes/open-props/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@
"description": "",
"license": "MIT-0",
"engines": {
"node": "^14 || ^16 || >=18"
"node": ">=18"
},
"devDependencies": {
"@csstools/postcss-bundler": "^1.0.2",
"@csstools/postcss-global-data": "^2.0.1",
"@csstools/postcss-minify": "^1.0.0",
"open-props": "^1.5.10",
"postcss-cli": "^10.1.0",
"postcss-custom-media": "^10.0.0",
"postcss-jit-props": "^1.0.13",
"postcss-preset-env": "^9.1.0"
"@csstools/postcss-bundler": "^2.0.1",
"@csstools/postcss-global-data": "^3.0.0",
"@csstools/postcss-minify": "^2.0.1",
"open-props": "^1.7.6",
"postcss-cli": "^11.0.0",
"postcss-custom-media": "^11.0.1",
"postcss-jit-props": "^1.0.14",
"postcss-preset-env": "^10.0.3"
},
"scripts": {
"style": "postcss ./src/style.css -o ./dist/style.css -m",
Expand Down
Loading

0 comments on commit 75e5ded

Please sign in to comment.