Skip to content

Commit

Permalink
0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Feb 8, 2024
1 parent e7ee07c commit bb2037c
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/NPM.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
steps:
- uses: actions/[email protected]

- uses: actions/[email protected].2
- uses: actions/[email protected].1
with:
node-version: "18"
registry-url: "https://registry.npmjs.org"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
--unsafe-perm=true
]
- uses: actions/[email protected].2
- uses: actions/[email protected].1
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
Expand All @@ -85,7 +85,7 @@ jobs:
- run: pnpm run prepublishOnly
working-directory: .

- uses: actions/[email protected].1
- uses: actions/[email protected].0
with:
name: .-Node-${{ matrix.node-version }}-Target
path: ./Target
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.0.3

- Cleanup

## 0.0.2

- Cleanup
Expand Down
2 changes: 1 addition & 1 deletion Source/Variable/Biome.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ export default JSON.parse(
await (await import("../Function/Configuration.js")).default("biome.json"),
) satisfies Type;

import type Type from "../Interface/Biome.js";
import type Type from "../Type/Biome.js";
2 changes: 1 addition & 1 deletion Target/Function/Integration.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ declare const _default: Type;
export default _default;
import type Type from "../Interface/Integration.js";
export declare const Default: Omit<{} & {
Biome: Type;
Biome: any;
Action: Omit<{} & {
Failed: (On: import("files-pipe/Target/Interface/File.js").default) => Promise<string>;
Accomplished: (On: import("files-pipe/Target/Interface/File.js").default) => Promise<string>;
Expand Down
2 changes: 1 addition & 1 deletion Target/Variable/Biome.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
* @module Biome
*
*/
declare const _default: Type;
declare const _default: any;
export default _default;
2 changes: 1 addition & 1 deletion Target/Variable/Option.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
*/
declare const _default: Omit<{} & {
Biome: Type;
Biome: any;
Action: Omit<{} & {
Failed: (On: import("files-pipe/Target/Interface/File.js").default) => Promise<string>;
Accomplished: (On: import("files-pipe/Target/Interface/File.js").default) => Promise<string>;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "astro-biome",
"version": "0.0.2",
"version": "0.0.3",
"private": false,
"description": "🗻 AstroJS Biome tools. Format, lint and check your Astro website with Biome.",
"keywords": [
Expand Down

0 comments on commit bb2037c

Please sign in to comment.