Skip to content

Commit

Permalink
build: regenerate deno lockfile (#986)
Browse files Browse the repository at this point in the history
  • Loading branch information
uncenter authored Jun 14, 2024
1 parent 0cd4d83 commit 45de36f
Show file tree
Hide file tree
Showing 7 changed files with 210 additions and 424 deletions.
9 changes: 8 additions & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,14 @@
"type-fest": "npm:[email protected]",
"handlebars": "npm:[email protected]",
"less": "npm:[email protected]",
"usercss-meta": "npm:[email protected]"
"usercss-meta": "npm:[email protected]",
"json-schema-to-typescript": "npm:[email protected]",
"postcss-less": "npm:[email protected]",
"stylelint": "npm:[email protected]",
"stylelint-config-standard": "npm:[email protected]",
"stylelint-config-recommended": "npm:[email protected]",
"postcss-value-parser": "npm:[email protected]",
"svgo": "npm:[email protected]"
},
"tasks": {
"ci:generate": "deno run -A ./scripts/generate/main.ts",
Expand Down
605 changes: 192 additions & 413 deletions deno.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions scripts/lint/stylelint-custom/optimizedSvgs.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import stylelint from "npm:stylelint";
import valueParser from "npm:postcss-value-parser";
import { optimize } from "npm:svgo";
import stylelint from "stylelint";
import valueParser from "postcss-value-parser";
import { optimize } from "svgo";

const {
createPlugin,
Expand Down
8 changes: 4 additions & 4 deletions scripts/lint/stylelint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import * as color from "std/fmt/colors.ts";
import type { WalkEntry } from "std/fs/walk.ts";
import { relative } from "std/path/mod.ts";

import "npm:postcss-less";
import stylelint from "npm:stylelint";
import "npm:stylelint-config-standard";
import "npm:stylelint-config-recommended";
import "postcss-less";
import stylelint from "stylelint";
import "stylelint-config-standard";
import "stylelint-config-recommended";

import { REPO_ROOT } from "@/deps.ts";
import { log } from "@/lint/logger.ts";
Expand Down
2 changes: 1 addition & 1 deletion scripts/types/mod.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export * as UserStylesSchema from "@/types/userstyles.d.ts";
export * as PortsSchema from "catppuccin-repo/resources/types/ports.d.ts";

import { Entries } from "https://esm.sh/type-fest@4.8.1";
import { Entries } from "type-fest";
declare global {
interface ObjectConstructor {
entries<T extends object>(o: T): Entries<T>;
Expand Down
2 changes: 1 addition & 1 deletion scripts/update-types.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env -S deno run -A
// deno-lint-ignore-file no-explicit-any
import { join } from "std/path/mod.ts";
import { compile, Options } from "npm:json-schema-to-typescript";
import { compile, Options } from "json-schema-to-typescript";
import { REPO_ROOT, userStylesSchema } from "@/deps.ts";

const options = {
Expand Down
2 changes: 1 addition & 1 deletion styles/ichi.moe/catppuccin.user.css
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@
}

.f-dropdown::before {
border-color: transparent transparent @subtext1 transparent;
border-color: transparent transparent @subtext1;
}

span.query-pick {
Expand Down

0 comments on commit 45de36f

Please sign in to comment.