Skip to content

Commit

Permalink
fix: quit named types export
Browse files Browse the repository at this point in the history
close #12
  • Loading branch information
TomokiMiyauci committed Mar 5, 2022
1 parent 8fe06d1 commit e2c928a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions core/mod.ts
@@ -1,7 +1,7 @@
export {
generate,
type Option as GenerateOption,
type Result as GenerateResult,
export { generate } from "./generate.ts";
export type {
Option as GenerateOption,
Result as GenerateResult,
} from "./generate.ts";
export * from "./extractor.ts";
export * from "./resolve.ts";
Expand Down
10 changes: 5 additions & 5 deletions deps.ts
Expand Up @@ -24,14 +24,14 @@ export { sortBy } from "https://deno.land/std@0.125.0/collections/sort_by.ts";
export { curry } from "https://deno.land/x/curry@v1.0.0/mod.ts";
export {
None,
type Option,
Some,
} from "https://deno.land/x/monads@v0.5.10/option/option.ts";
export type { Option } from "https://deno.land/x/monads@v0.5.10/option/option.ts";
export {
type Either,
Left,
Right,
} from "https://deno.land/x/monads@v0.5.10/either/either.ts";
export type { Either } from "https://deno.land/x/monads@v0.5.10/either/either.ts";
export { isUndefined };
export type {
AcceptedPlugin,
Expand All @@ -51,11 +51,11 @@ export { AtRule, Declaration, postcss, Root, Rule };
export {
toAST,
toObject,
} from "https://deno.land/x/postcss_js@v1.0.0-beta.2/mod.ts";
} from "https://deno.land/x/postcss_js@v1.0.0-beta.3/mod.ts";
export {
default as parseSelector,
type Node as SelectorNode,
} from "https://esm.sh/postcss-selector-parser";
} from "https://esm.sh/postcss-selector-parser@6.0.9?pin=v66";
export type { Node as SelectorNode } from "https://esm.sh/postcss-selector-parser@6.0.9?pin=v66";
export function isStringOrNumber(value: unknown): value is string | number {
return isString(value) || isNumber(value);
}
Expand Down

0 comments on commit e2c928a

Please sign in to comment.