Skip to content

Commit

Permalink
1.1.32
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Apr 17, 2023
1 parent 44336ec commit 6a652cf
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 22 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.1.32

- Cleanup

## 1.1.31

- Switches to the files-pipe component
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/options/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { CRITTERS } from "./critters.js";
import type { Options as OptionsBase } from "files-pipe/options/index.js";
import type { Options as OptionsBase } from "files-pipe/dist/options/index.js";
export interface Options extends OptionsBase {
[key: string]: unknown;
critters?: boolean | CRITTERS;
Expand Down
2 changes: 1 addition & 1 deletion dist/options/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "astro-critters",
"version": "1.1.31",
"version": "1.1.32",
"type": "module",
"description": "🦔 AstroJS GoogleChromeLabs critters integration. Inline your critical CSS with Astro.",
"repository": {
Expand Down Expand Up @@ -28,11 +28,11 @@
},
"dependencies": {
"critters": "0.0.16",
"files-pipe": "0.0.1"
"files-pipe": "0.0.2"
},
"devDependencies": {
"@lightrix/config": "0.0.8",
"@lightrix/scripts": "0.1.6",
"@lightrix/config": "0.0.9",
"@lightrix/scripts": "0.1.7",
"astro": "2.3.0"
},
"publishConfig": {
Expand Down
12 changes: 3 additions & 9 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,13 @@
import type { executions, optionPath } from "files-pipe/options/index.js";
import type { executions, optionPath } from "files-pipe/dist/options/index.js";

// @ts-ignore
import Critters from "critters";

import defaults from "./options/index.js";

import { files } from "files-pipe";
import deepmerge from "files-pipe/lib/deepmerge.js";

import deepmerge from "files-pipe/dist/lib/deepmerge.js";
import { fileURLToPath } from "url";

import applyTo from "files-pipe/lib/apply-to.js";

import applyTo from "files-pipe/dist/lib/apply-to.js";
import type { AstroIntegration } from "astro";

import type { Options } from "./options/index.js";

export default (options: Options = {}): AstroIntegration => {
Expand Down
9 changes: 3 additions & 6 deletions src/options/index.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
import deepmerge from "files-pipe/lib/deepmerge.js";
import defaults from "files-pipe/options/index.js";

import deepmerge from "files-pipe/dist/lib/deepmerge.js";
import defaults from "files-pipe/dist/options/index.js";
import defaultsCRITTERS from "./critters.js";

import type { CRITTERS } from "./critters.js";

import type { Options as OptionsBase } from "files-pipe/options/index.js";
import type { Options as OptionsBase } from "files-pipe/dist/options/index.js";

export interface Options extends OptionsBase {
[key: string]: unknown;
Expand Down

0 comments on commit 6a652cf

Please sign in to comment.