Skip to content

Commit

Permalink
1.1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Dec 17, 2022
1 parent 5fe8a1a commit 7176b48
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 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.23

- Switches ownership

## 1.1.22

- Cleanup
Expand Down
2 changes: 1 addition & 1 deletion dist/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { AstroIntegration } from "astro";
import type { Options } from "@nikolarhristov/pipeline/dist/options/lib/critters/index.js";
import type { Options } from "files-pipeline/dist/options/lib/critters/index.js";
declare const _default: (options?: Options) => AstroIntegration;
export default _default;
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
import{pipeline as o}from"@nikolarhristov/pipeline";var r=(t={})=>({name:"astro-critters",hooks:{"astro:build:done":async()=>{await new o(t).critters()}}});export{r as default};
import{pipeline as i}from"files-pipeline";var r=(t={})=>({name:"astro-critters",hooks:{"astro:build:done":async()=>{await new i(t).critters()}}});export{r as default};
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "astro-critters",
"version": "1.1.22",
"version": "1.1.23",
"type": "module",
"description": "🦔 AstroJS GoogleChromeLabs critters integration. Inline your critical CSS with Astro.",
"repository": {
Expand All @@ -27,7 +27,7 @@
"build": "lightrix build src/index.ts"
},
"dependencies": {
"@nikolarhristov/pipeline": "0.1.7"
"files-pipeline": "0.0.1"
},
"devDependencies": {
"@lightrix/config": "0.0.6",
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { AstroIntegration } from "astro";

import { pipeline } from "@nikolarhristov/pipeline";
import type { Options } from "@nikolarhristov/pipeline/dist/options/lib/critters/index.js";
import { pipeline } from "files-pipeline";
import type { Options } from "files-pipeline/dist/options/lib/critters/index.js";

export default (options: Options = {}): AstroIntegration => ({
name: "astro-critters",
Expand Down

0 comments on commit 7176b48

Please sign in to comment.