Skip to content

chore(repo): Update dependency postcss to ^8.5.5 #6127

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

Merged
merged 1 commit into from
Jun 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/elements/examples/nextjs/package.json
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@
"@types/react": "catalog:react",
"@types/react-dom": "catalog:react",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.4",
"postcss": "^8.5.5",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3"
}

Unchanged files with check annotations Beta

export type HslaColorString = `hsl(${string})` | `hsla(${string})`;
export type RgbaColorString = `rgb(${string})` | `rgba(${string})`;
export type Color = string | HexColor | HslaColor | RgbaColor | TransparentColor;

Check warning on line 30 in packages/types/src/theme.ts

GitHub Actions / Static analysis

template literal type is overridden by string in this union type
export type ColorString = HexColorString | HslaColorString | RgbaColorString;
/**
* **Required for applications that run behind a reverse proxy**. The URL that Clerk will proxy requests to. Can be either a relative path (`/__clerk`) or a full URL (`https://<your-domain>/__clerk`).
*/
proxyUrl?: never | string | ((url: URL) => string);

Check warning on line 20 in packages/types/src/multiDomain.ts

GitHub Actions / Static analysis

'never' is overridden by other types in this union type
/**
* **Required if your application is a satellite application**. Sets the domain of the satellite application.
*/
/**
* **Required for applications that run behind a reverse proxy**. The URL that Clerk will proxy requests to. Can be either a relative path (`/__clerk`) or a full URL (`https://<your-domain>/__clerk`).
*/
proxyUrl?: never | string;

Check warning on line 46 in packages/types/src/multiDomain.ts

GitHub Actions / Static analysis

'never' is overridden by other types in this union type
/**
* **Required if your application is a satellite application**. Sets the domain of the satellite application.
*/
alg: string;
typ?: string;
cty?: string;
crit?: Array<string | Exclude<keyof JwtHeader, 'crit'>>;

Check warning on line 21 in packages/types/src/jwtv2.ts

GitHub Actions / Static analysis

"alg" | "typ" | "cty" | "kid" | "jku" | "x5u" | "x5t#S256" | "x5t" | "x5c" is overridden by string in this union type
kid: string;
jku?: string;
x5u?: string | string[];
*/
windowNavigate: (to: URL | string) => void;
},
) => Promise<unknown> | unknown;

Check warning on line 1038 in packages/types/src/clerk.ts

GitHub Actions / Static analysis

'unknown' overrides all other types in this union type
export type WithoutRouting<T> = Omit<T, 'path' | 'routing'>;
export type CssColorOrScale = string | ColorScaleWithRequiredBase;
export type CssColorOrAlphaScale = string | AlphaColorScale;
type CssColor = string | TransparentColor | BuiltInColors;

Check warning on line 54 in packages/types/src/appearance.ts

GitHub Actions / Static analysis

"black" | "blue" | "red" | "green" | "grey" | "white" | "yellow" is overridden by string in this union type

Check warning on line 54 in packages/types/src/appearance.ts

GitHub Actions / Static analysis

"transparent" is overridden by string in this union type
type CssLengthUnit = string;
type FontWeightNamedValue = CSS.Properties['fontWeight'];
| 'Trebuchet MS'
| 'Verdana';
export type FontFamily = string | WebSafeFont;

Check warning on line 79 in packages/types/src/appearance.ts

GitHub Actions / Static analysis

"Arial" | "Brush Script MT" | "Courier New" | "Garamond" | "Georgia" | "Helvetica" | "Tahoma" | "Times New Roman" | "Trebuchet MS" | "Verdana" is overridden by string in this union type
type LoadingState = 'loading';
type ErrorState = 'error';
* @param {import('../utils/getConfiguration.js').Configuration} configuration
* @returns {Promise<import('../utils/getConfiguration.js').InstanceConfiguration>}
*/
async function getInstanceConfiguration(configuration) {

Check warning on line 66 in packages/dev-cli/src/commands/setup.js

GitHub Actions / Static analysis

Async function 'getInstanceConfiguration' has no 'await' expression
const { activeInstance, instances } = configuration;
const activeInstanceConfig = instances[activeInstance];
if (!activeInstanceConfig.publishableKey.startsWith('pk_') || !activeInstanceConfig.secretKey.startsWith('sk_')) {
/**
* Opens the clerk-dev config file in VISUAL or EDITOR.
*/
export async function config() {

Check warning on line 9 in packages/dev-cli/src/commands/config.js

GitHub Actions / Static analysis

Async function 'config' has no 'await' expression
if (process.env.VISUAL) {
spawn(process.env.VISUAL, [CONFIG_FILE], {
stdio: 'inherit',