Skip to content

Commit

Permalink
1.1.33
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Apr 22, 2023
1 parent e85babc commit 2286c83
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 11 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,12 @@ jobs:
node-version: "18"
registry-url: "https://registry.npmjs.org"
- run: npm install -g npm
- run: npm install --legacy-peer-deps
- run: npm publish --legacy-peer-deps

- name: Publish .
continue-on-error: true
working-directory: .
run: |
npm install --legacy-peer-deps
npm publish --legacy-peer-deps --provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.1.33

- Version with provenance

## 1.1.32

- Cleanup
Expand Down
2 changes: 1 addition & 1 deletion dist/options/critters.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Options as CrittersOptions } from "critters";
export interface CRITTERS extends CrittersOptions {
[key: string]: unknown;
[key: string]: any;
}
declare const _default: {
preload: string;
Expand Down
4 changes: 2 additions & 2 deletions dist/options/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { CRITTERS } from "./critters.js";
import type { Options as OptionsBase } from "files-pipe/dist/options/index.js";
import type { CRITTERS } from "./critters.js";
export interface Options extends OptionsBase {
[key: string]: unknown;
[key: string]: any;
critters?: boolean | CRITTERS;
}
declare const _default: Options;
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.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "astro-critters",
"version": "1.1.32",
"version": "1.1.33",
"type": "module",
"description": "🦔 AstroJS GoogleChromeLabs critters integration. Inline your critical CSS with Astro.",
"repository": {
Expand All @@ -24,15 +24,15 @@
"performance"
],
"scripts": {
"build": "lightrix build 'src/**/*.ts'"
"prepare": "lightrix build 'src/**/*.ts'"
},
"dependencies": {
"critters": "0.0.16",
"files-pipe": "0.0.2"
"files-pipe": "0.0.3"
},
"devDependencies": {
"@lightrix/config": "0.0.9",
"@lightrix/scripts": "1.0.0",
"@lightrix/config": "0.0.11",
"@lightrix/scripts": "1.0.2",
"astro": "2.3.0"
},
"publishConfig": {
Expand Down
1 change: 1 addition & 0 deletions src/options/critters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import type { Options as CrittersOptions } from "critters";

export interface CRITTERS extends CrittersOptions {
// rome-ignore lint/suspicious/noExplicitAny:
[key: string]: any;
}

Expand Down
1 change: 1 addition & 0 deletions src/options/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import type { CRITTERS } from "./critters.js";
import defaultsCRITTERS from "./critters.js";

export interface Options extends OptionsBase {
// rome-ignore lint/suspicious/noExplicitAny:
[key: string]: any;

critters?: boolean | CRITTERS;
Expand Down

0 comments on commit 2286c83

Please sign in to comment.