@powerlines/plugin-image-compression 0.2.71 → 0.2.73

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/dist/_virtual/rolldown_runtime.cjs +29 -0
  2. package/dist/index.cjs +5 -65
  3. package/dist/index.d.cts +2 -2
  4. package/dist/index.d.mts +3 -2
  5. package/dist/index.mjs +1 -35
  6. package/dist/powerlines/src/plugin-utils/paths.cjs +36 -0
  7. package/dist/powerlines/src/plugin-utils/paths.mjs +35 -0
  8. package/dist/powerlines/src/types/build.d.cts +145 -0
  9. package/dist/powerlines/src/types/build.d.mts +145 -0
  10. package/dist/powerlines/src/types/commands.d.cts +8 -0
  11. package/dist/powerlines/src/types/commands.d.mts +8 -0
  12. package/dist/powerlines/src/types/config.d.cts +376 -0
  13. package/dist/powerlines/src/types/config.d.mts +376 -0
  14. package/dist/powerlines/src/types/context.d.cts +403 -0
  15. package/dist/powerlines/src/types/context.d.mts +403 -0
  16. package/dist/powerlines/src/types/fs.d.cts +486 -0
  17. package/dist/powerlines/src/types/fs.d.mts +486 -0
  18. package/dist/powerlines/src/types/plugin.d.cts +231 -0
  19. package/dist/powerlines/src/types/plugin.d.mts +231 -0
  20. package/dist/powerlines/src/types/resolved.d.cts +81 -0
  21. package/dist/powerlines/src/types/resolved.d.mts +81 -0
  22. package/dist/powerlines/src/types/tsconfig.d.cts +69 -0
  23. package/dist/powerlines/src/types/tsconfig.d.mts +69 -0
  24. package/dist/types/index.cjs +0 -2
  25. package/dist/types/index.d.cts +1 -2
  26. package/dist/types/index.d.mts +1 -2
  27. package/dist/types/index.mjs +0 -3
  28. package/dist/types/plugin.cjs +0 -1
  29. package/dist/types/plugin.d.cts +74 -1
  30. package/dist/types/plugin.d.mts +74 -1
  31. package/dist/types/plugin.mjs +0 -2
  32. package/package.json +5 -5
  33. package/dist/index-BgAdqTbb.d.mts +0 -1
  34. package/dist/index-CEgs-Dz2.d.cts +0 -1
  35. package/dist/plugin-C20deWYm.d.cts +0 -1819
  36. package/dist/plugin-C3MaN5jp.mjs +0 -1
  37. package/dist/plugin-DHXHjv16.cjs +0 -0
  38. package/dist/plugin-DxOmyOU0.d.mts +0 -1819
  39. package/dist/types-CTUnla4x.mjs +0 -1
  40. package/dist/types-DHkg7xmX.cjs +0 -0
@@ -0,0 +1,69 @@
1
+ import { CompilerOptions, TsConfigJson } from "@stryke/types/tsconfig";
2
+ import ts from "typescript";
3
+
4
+ //#region ../powerlines/src/types/tsconfig.d.ts
5
+ type ReflectionMode = "default" | "explicit" | "never";
6
+ type RawReflectionMode = ReflectionMode | "" | boolean | string | string[] | undefined;
7
+ /**
8
+ * Defines the level of reflection to be used during the transpilation process.
9
+ *
10
+ * @remarks
11
+ * The level determines how much extra data is captured in the byte code for each type. This can be one of the following values:
12
+ * - `minimal` - Only the essential type information is captured.
13
+ * - `normal` - Additional type information is captured, including some contextual data.
14
+ * - `verbose` - All available type information is captured, including detailed contextual data.
15
+ */
16
+ type ReflectionLevel = "minimal" | "normal" | "verbose";
17
+ interface DeepkitOptions {
18
+ /**
19
+ * Either true to activate reflection for all files compiled using this tsconfig,
20
+ * or a list of globs/file paths relative to this tsconfig.json.
21
+ * Globs/file paths can be prefixed with a ! to exclude them.
22
+ */
23
+ reflection?: RawReflectionMode;
24
+ /**
25
+ * Defines the level of reflection to be used during the transpilation process.
26
+ *
27
+ * @remarks
28
+ * The level determines how much extra data is captured in the byte code for each type. This can be one of the following values:
29
+ * - `minimal` - Only the essential type information is captured.
30
+ * - `normal` - Additional type information is captured, including some contextual data.
31
+ * - `verbose` - All available type information is captured, including detailed contextual data.
32
+ */
33
+ reflectionLevel?: ReflectionLevel;
34
+ }
35
+ type TSCompilerOptions = CompilerOptions & DeepkitOptions;
36
+ /**
37
+ * The TypeScript compiler configuration.
38
+ *
39
+ * @see https://www.typescriptlang.org/docs/handbook/tsconfig-json.html
40
+ */
41
+ interface TSConfig extends Omit<TsConfigJson, "reflection"> {
42
+ /**
43
+ * Either true to activate reflection for all files compiled using this tsconfig,
44
+ * or a list of globs/file paths relative to this tsconfig.json.
45
+ * Globs/file paths can be prefixed with a ! to exclude them.
46
+ */
47
+ reflection?: RawReflectionMode;
48
+ /**
49
+ * Defines the level of reflection to be used during the transpilation process.
50
+ *
51
+ * @remarks
52
+ * The level determines how much extra data is captured in the byte code for each type. This can be one of the following values:
53
+ * - `minimal` - Only the essential type information is captured.
54
+ * - `normal` - Additional type information is captured, including some contextual data.
55
+ * - `verbose` - All available type information is captured, including detailed contextual data.
56
+ */
57
+ reflectionLevel?: ReflectionLevel;
58
+ /**
59
+ * Instructs the TypeScript compiler how to compile `.ts` files.
60
+ */
61
+ compilerOptions?: TSCompilerOptions;
62
+ }
63
+ type ParsedTypeScriptConfig = ts.ParsedCommandLine & {
64
+ originalTsconfigJson: TsConfigJson;
65
+ tsconfigJson: TSConfig;
66
+ tsconfigFilePath: string;
67
+ };
68
+ //#endregion
69
+ export { ParsedTypeScriptConfig, TSConfig };
@@ -0,0 +1,69 @@
1
+ import { CompilerOptions, TsConfigJson } from "@stryke/types/tsconfig";
2
+ import ts from "typescript";
3
+
4
+ //#region ../powerlines/src/types/tsconfig.d.ts
5
+ type ReflectionMode = "default" | "explicit" | "never";
6
+ type RawReflectionMode = ReflectionMode | "" | boolean | string | string[] | undefined;
7
+ /**
8
+ * Defines the level of reflection to be used during the transpilation process.
9
+ *
10
+ * @remarks
11
+ * The level determines how much extra data is captured in the byte code for each type. This can be one of the following values:
12
+ * - `minimal` - Only the essential type information is captured.
13
+ * - `normal` - Additional type information is captured, including some contextual data.
14
+ * - `verbose` - All available type information is captured, including detailed contextual data.
15
+ */
16
+ type ReflectionLevel = "minimal" | "normal" | "verbose";
17
+ interface DeepkitOptions {
18
+ /**
19
+ * Either true to activate reflection for all files compiled using this tsconfig,
20
+ * or a list of globs/file paths relative to this tsconfig.json.
21
+ * Globs/file paths can be prefixed with a ! to exclude them.
22
+ */
23
+ reflection?: RawReflectionMode;
24
+ /**
25
+ * Defines the level of reflection to be used during the transpilation process.
26
+ *
27
+ * @remarks
28
+ * The level determines how much extra data is captured in the byte code for each type. This can be one of the following values:
29
+ * - `minimal` - Only the essential type information is captured.
30
+ * - `normal` - Additional type information is captured, including some contextual data.
31
+ * - `verbose` - All available type information is captured, including detailed contextual data.
32
+ */
33
+ reflectionLevel?: ReflectionLevel;
34
+ }
35
+ type TSCompilerOptions = CompilerOptions & DeepkitOptions;
36
+ /**
37
+ * The TypeScript compiler configuration.
38
+ *
39
+ * @see https://www.typescriptlang.org/docs/handbook/tsconfig-json.html
40
+ */
41
+ interface TSConfig extends Omit<TsConfigJson, "reflection"> {
42
+ /**
43
+ * Either true to activate reflection for all files compiled using this tsconfig,
44
+ * or a list of globs/file paths relative to this tsconfig.json.
45
+ * Globs/file paths can be prefixed with a ! to exclude them.
46
+ */
47
+ reflection?: RawReflectionMode;
48
+ /**
49
+ * Defines the level of reflection to be used during the transpilation process.
50
+ *
51
+ * @remarks
52
+ * The level determines how much extra data is captured in the byte code for each type. This can be one of the following values:
53
+ * - `minimal` - Only the essential type information is captured.
54
+ * - `normal` - Additional type information is captured, including some contextual data.
55
+ * - `verbose` - All available type information is captured, including detailed contextual data.
56
+ */
57
+ reflectionLevel?: ReflectionLevel;
58
+ /**
59
+ * Instructs the TypeScript compiler how to compile `.ts` files.
60
+ */
61
+ compilerOptions?: TSCompilerOptions;
62
+ }
63
+ type ParsedTypeScriptConfig = ts.ParsedCommandLine & {
64
+ originalTsconfigJson: TsConfigJson;
65
+ tsconfigJson: TSConfig;
66
+ tsconfigFilePath: string;
67
+ };
68
+ //#endregion
69
+ export { ParsedTypeScriptConfig, TSConfig };
@@ -1,2 +0,0 @@
1
- require('../plugin-DHXHjv16.cjs');
2
- require('../types-DHkg7xmX.cjs');
@@ -1,3 +1,2 @@
1
- import { a as __ΩImageCompressionPluginContext, c as __ΩImageCompressionPluginUserConfig, i as ImageCompressionPluginUserConfig, n as ImageCompressionPluginOptions, o as __ΩImageCompressionPluginOptions, r as ImageCompressionPluginResolvedConfig, s as __ΩImageCompressionPluginResolvedConfig, t as ImageCompressionPluginContext } from "../plugin-C20deWYm.cjs";
2
- import "../index-CEgs-Dz2.cjs";
1
+ import { ImageCompressionPluginContext, ImageCompressionPluginOptions, ImageCompressionPluginResolvedConfig, ImageCompressionPluginUserConfig, __ΩImageCompressionPluginContext, __ΩImageCompressionPluginOptions, __ΩImageCompressionPluginResolvedConfig, __ΩImageCompressionPluginUserConfig } from "./plugin.cjs";
3
2
  export { ImageCompressionPluginContext, ImageCompressionPluginOptions, ImageCompressionPluginResolvedConfig, ImageCompressionPluginUserConfig, __ΩImageCompressionPluginContext, __ΩImageCompressionPluginOptions, __ΩImageCompressionPluginResolvedConfig, __ΩImageCompressionPluginUserConfig };
@@ -1,3 +1,2 @@
1
- import { a as __ΩImageCompressionPluginContext, c as __ΩImageCompressionPluginUserConfig, i as ImageCompressionPluginUserConfig, n as ImageCompressionPluginOptions, o as __ΩImageCompressionPluginOptions, r as ImageCompressionPluginResolvedConfig, s as __ΩImageCompressionPluginResolvedConfig, t as ImageCompressionPluginContext } from "../plugin-DxOmyOU0.mjs";
2
- import "../index-BgAdqTbb.mjs";
1
+ import { ImageCompressionPluginContext, ImageCompressionPluginOptions, ImageCompressionPluginResolvedConfig, ImageCompressionPluginUserConfig, __ΩImageCompressionPluginContext, __ΩImageCompressionPluginOptions, __ΩImageCompressionPluginResolvedConfig, __ΩImageCompressionPluginUserConfig } from "./plugin.mjs";
3
2
  export { ImageCompressionPluginContext, ImageCompressionPluginOptions, ImageCompressionPluginResolvedConfig, ImageCompressionPluginUserConfig, __ΩImageCompressionPluginContext, __ΩImageCompressionPluginOptions, __ΩImageCompressionPluginResolvedConfig, __ΩImageCompressionPluginUserConfig };
@@ -1,4 +1 @@
1
- import "../plugin-C3MaN5jp.mjs";
2
- import "../types-CTUnla4x.mjs";
3
-
4
1
  export { };
@@ -1 +0,0 @@
1
- require('../plugin-DHXHjv16.cjs');
@@ -1,2 +1,75 @@
1
- import { a as __ΩImageCompressionPluginContext, c as __ΩImageCompressionPluginUserConfig, i as ImageCompressionPluginUserConfig, n as ImageCompressionPluginOptions, o as __ΩImageCompressionPluginOptions, r as ImageCompressionPluginResolvedConfig, s as __ΩImageCompressionPluginResolvedConfig, t as ImageCompressionPluginContext } from "../plugin-C20deWYm.cjs";
1
+ import { UserConfig } from "../powerlines/src/types/config.cjs";
2
+ import { ResolvedConfig } from "../powerlines/src/types/resolved.cjs";
3
+ import { PluginContext } from "../powerlines/src/types/context.cjs";
4
+ import { AvifOptions, GifOptions, HeifOptions, Jp2Options, JpegOptions, JxlOptions, PngOptions, TiffOptions, WebpOptions } from "sharp";
5
+ import { Config } from "svgo";
6
+
7
+ //#region src/types/plugin.d.ts
8
+ interface ImageCompressionPluginOptions {
9
+ /**
10
+ * A path or glob pattern (or an array of paths and glob patterns) to image files to optimize during Powerlines processing.
11
+ *
12
+ * @defaultValue "\{projectRoot\}/**\/*.\{svg,jpg,jpeg,png,webp,avif,heif,gif,tiff,jp2,jxl\}"
13
+ */
14
+ filter?: string | string[];
15
+ /**
16
+ * The output directory for the optimized images.
17
+ *
18
+ * @remarks
19
+ * By default, it will generate the output files alongside each input image file.
20
+ */
21
+ outputPath?: string;
22
+ /**
23
+ * These SVGO options used for SVG optimization
24
+ */
25
+ svg?: Config;
26
+ /**
27
+ * These JPEG options used for output image
28
+ */
29
+ jpeg?: JpegOptions;
30
+ /**
31
+ * These JP2 (JPEG 2000) options used for output image
32
+ */
33
+ jp2?: Jp2Options;
34
+ /**
35
+ * These JPEG-XL (JXL) options used for output image
36
+ */
37
+ jxl?: JxlOptions;
38
+ /**
39
+ * These PNG options used for output image
40
+ */
41
+ png?: PngOptions;
42
+ /**
43
+ * These WebP options used for output image
44
+ */
45
+ webp?: WebpOptions;
46
+ /**
47
+ * These GIF options used for output image
48
+ */
49
+ gif?: GifOptions;
50
+ /**
51
+ * These AVIF options used for output image
52
+ */
53
+ avif?: AvifOptions;
54
+ /**
55
+ * These HEIF options used for output image
56
+ */
57
+ heif?: HeifOptions;
58
+ /**
59
+ * These TIFF options used for output image
60
+ */
61
+ tiff?: TiffOptions;
62
+ }
63
+ interface ImageCompressionPluginUserConfig extends UserConfig {
64
+ imageCompression?: ImageCompressionPluginOptions;
65
+ }
66
+ interface ImageCompressionPluginResolvedConfig extends ResolvedConfig {
67
+ imageCompression: Omit<ImageCompressionPluginOptions, "filter" | "svg" | "jpeg" | "png" | "webp" | "avif" | "heif" | "tiff" | "jp2" | "jxl" | "gif"> & Required<Pick<ImageCompressionPluginOptions, "filter" | "svg" | "jpeg" | "png" | "webp" | "avif" | "heif" | "tiff" | "jp2" | "jxl" | "gif">>;
68
+ }
69
+ type ImageCompressionPluginContext<TResolvedConfig extends ImageCompressionPluginResolvedConfig = ImageCompressionPluginResolvedConfig> = PluginContext<TResolvedConfig>;
70
+ declare type __ΩImageCompressionPluginOptions = any[];
71
+ declare type __ΩImageCompressionPluginUserConfig = any[];
72
+ declare type __ΩImageCompressionPluginResolvedConfig = any[];
73
+ declare type __ΩImageCompressionPluginContext = any[];
74
+ //#endregion
2
75
  export { ImageCompressionPluginContext, ImageCompressionPluginOptions, ImageCompressionPluginResolvedConfig, ImageCompressionPluginUserConfig, __ΩImageCompressionPluginContext, __ΩImageCompressionPluginOptions, __ΩImageCompressionPluginResolvedConfig, __ΩImageCompressionPluginUserConfig };
@@ -1,2 +1,75 @@
1
- import { a as __ΩImageCompressionPluginContext, c as __ΩImageCompressionPluginUserConfig, i as ImageCompressionPluginUserConfig, n as ImageCompressionPluginOptions, o as __ΩImageCompressionPluginOptions, r as ImageCompressionPluginResolvedConfig, s as __ΩImageCompressionPluginResolvedConfig, t as ImageCompressionPluginContext } from "../plugin-DxOmyOU0.mjs";
1
+ import { UserConfig } from "../powerlines/src/types/config.mjs";
2
+ import { ResolvedConfig } from "../powerlines/src/types/resolved.mjs";
3
+ import { PluginContext } from "../powerlines/src/types/context.mjs";
4
+ import { Config } from "svgo";
5
+ import { AvifOptions, GifOptions, HeifOptions, Jp2Options, JpegOptions, JxlOptions, PngOptions, TiffOptions, WebpOptions } from "sharp";
6
+
7
+ //#region src/types/plugin.d.ts
8
+ interface ImageCompressionPluginOptions {
9
+ /**
10
+ * A path or glob pattern (or an array of paths and glob patterns) to image files to optimize during Powerlines processing.
11
+ *
12
+ * @defaultValue "\{projectRoot\}/**\/*.\{svg,jpg,jpeg,png,webp,avif,heif,gif,tiff,jp2,jxl\}"
13
+ */
14
+ filter?: string | string[];
15
+ /**
16
+ * The output directory for the optimized images.
17
+ *
18
+ * @remarks
19
+ * By default, it will generate the output files alongside each input image file.
20
+ */
21
+ outputPath?: string;
22
+ /**
23
+ * These SVGO options used for SVG optimization
24
+ */
25
+ svg?: Config;
26
+ /**
27
+ * These JPEG options used for output image
28
+ */
29
+ jpeg?: JpegOptions;
30
+ /**
31
+ * These JP2 (JPEG 2000) options used for output image
32
+ */
33
+ jp2?: Jp2Options;
34
+ /**
35
+ * These JPEG-XL (JXL) options used for output image
36
+ */
37
+ jxl?: JxlOptions;
38
+ /**
39
+ * These PNG options used for output image
40
+ */
41
+ png?: PngOptions;
42
+ /**
43
+ * These WebP options used for output image
44
+ */
45
+ webp?: WebpOptions;
46
+ /**
47
+ * These GIF options used for output image
48
+ */
49
+ gif?: GifOptions;
50
+ /**
51
+ * These AVIF options used for output image
52
+ */
53
+ avif?: AvifOptions;
54
+ /**
55
+ * These HEIF options used for output image
56
+ */
57
+ heif?: HeifOptions;
58
+ /**
59
+ * These TIFF options used for output image
60
+ */
61
+ tiff?: TiffOptions;
62
+ }
63
+ interface ImageCompressionPluginUserConfig extends UserConfig {
64
+ imageCompression?: ImageCompressionPluginOptions;
65
+ }
66
+ interface ImageCompressionPluginResolvedConfig extends ResolvedConfig {
67
+ imageCompression: Omit<ImageCompressionPluginOptions, "filter" | "svg" | "jpeg" | "png" | "webp" | "avif" | "heif" | "tiff" | "jp2" | "jxl" | "gif"> & Required<Pick<ImageCompressionPluginOptions, "filter" | "svg" | "jpeg" | "png" | "webp" | "avif" | "heif" | "tiff" | "jp2" | "jxl" | "gif">>;
68
+ }
69
+ type ImageCompressionPluginContext<TResolvedConfig extends ImageCompressionPluginResolvedConfig = ImageCompressionPluginResolvedConfig> = PluginContext<TResolvedConfig>;
70
+ declare type __ΩImageCompressionPluginOptions = any[];
71
+ declare type __ΩImageCompressionPluginUserConfig = any[];
72
+ declare type __ΩImageCompressionPluginResolvedConfig = any[];
73
+ declare type __ΩImageCompressionPluginContext = any[];
74
+ //#endregion
2
75
  export { ImageCompressionPluginContext, ImageCompressionPluginOptions, ImageCompressionPluginResolvedConfig, ImageCompressionPluginUserConfig, __ΩImageCompressionPluginContext, __ΩImageCompressionPluginOptions, __ΩImageCompressionPluginResolvedConfig, __ΩImageCompressionPluginUserConfig };
@@ -1,3 +1 @@
1
- import "../plugin-C3MaN5jp.mjs";
2
-
3
1
  export { };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-image-compression",
3
- "version": "0.2.71",
3
+ "version": "0.2.73",
4
4
  "type": "module",
5
5
  "description": "A Powerlines plugin to optimize images used by the project.",
6
6
  "repository": {
@@ -131,14 +131,14 @@
131
131
  "jiti": "^2.6.1",
132
132
  "sharp": "^0.34.5",
133
133
  "svgo": "^4.0.0",
134
- "powerlines": "^0.36.26"
134
+ "powerlines": "^0.36.28"
135
135
  },
136
136
  "devDependencies": {
137
137
  "@storm-software/config": "^1.134.75",
138
- "@powerlines/nx": "^0.11.52",
139
- "@powerlines/plugin-plugin": "^0.12.74",
138
+ "@powerlines/nx": "^0.11.54",
139
+ "@powerlines/plugin-plugin": "^0.12.76",
140
140
  "@types/node": "^24.10.4"
141
141
  },
142
142
  "publishConfig": { "access": "public" },
143
- "gitHead": "a703a2dd9be6175a67a9bf4847d0217be4e920af"
143
+ "gitHead": "6891ff1330798e807c4caef6134df09d9f57686d"
144
144
  }
@@ -1 +0,0 @@
1
- export { };
@@ -1 +0,0 @@
1
- export { };