@powerlines/plugin-tsc 0.2.130 → 0.2.131
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.
- package/dist/{context-Wc7vQcpF.d.cts → context-BKnG0PBM.d.mts} +9 -2
- package/dist/{context-YG82wM_K.d.mts → context-DJwegHpz.d.cts} +9 -2
- package/dist/helpers/index.d.cts +2 -2
- package/dist/helpers/index.d.mts +2 -2
- package/dist/helpers/type-check.d.cts +2 -2
- package/dist/helpers/type-check.d.mts +2 -2
- package/dist/index.d.cts +3 -3
- package/dist/index.d.mts +3 -3
- package/dist/{plugin-B8O1Fqy6.d.mts → plugin-BH3d1UOw.d.mts} +1 -1
- package/dist/{plugin-DjevpZ1o.d.cts → plugin-DZYL6q5t.d.cts} +1 -1
- package/dist/{type-check-COd0vfQK.d.cts → type-check-CTF3SB99.d.mts} +1 -1
- package/dist/{type-check-DrcpU2r1.d.mts → type-check-yDG1LQxV.d.cts} +1 -1
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.mts +2 -2
- package/dist/types/plugin.d.cts +2 -2
- package/dist/types/plugin.d.mts +2 -2
- package/package.json +4 -4
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import ts from "typescript";
|
|
1
2
|
import { EnvPaths } from "@stryke/env/get-env-paths";
|
|
2
3
|
import { FetchRequestOptions } from "@stryke/http/fetch";
|
|
3
4
|
import { FunctionLike, MaybePromise, NonUndefined } from "@stryke/types/base";
|
|
@@ -19,7 +20,6 @@ import { PreviewOptions, ResolvedPreviewOptions } from "vite";
|
|
|
19
20
|
import { ResolveOptions } from "@stryke/fs/resolve";
|
|
20
21
|
import { ArrayValues } from "@stryke/types/array";
|
|
21
22
|
import { CompilerOptions, TsConfigJson } from "@stryke/types/tsconfig";
|
|
22
|
-
import ts from "typescript";
|
|
23
23
|
|
|
24
24
|
//#region ../powerlines/src/types/build.d.ts
|
|
25
25
|
type UnpluginBuildVariant = "rollup" | "webpack" | "rspack" | "vite" | "esbuild" | "farm" | "unloader" | "rolldown";
|
|
@@ -676,7 +676,7 @@ type OutputResolvedConfig = Required<Omit<OutputConfig, "assets" | "storage"> &
|
|
|
676
676
|
/**
|
|
677
677
|
* The resolved options for the Powerlines project configuration.
|
|
678
678
|
*/
|
|
679
|
-
type ResolvedConfig<TUserConfig extends UserConfig = UserConfig> = Omit<TUserConfig, "name" | "title" | "compatibilityDate" | "plugins" | "mode" | "environments" | "platform" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "variant" | "type" | "output" | "logLevel" | "framework" | "sourceRoot"> & Required<Pick<TUserConfig, "name" | "title" | "compatibilityDate" | "plugins" | "mode" | "environments" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "framework" | "sourceRoot">> & {
|
|
679
|
+
type ResolvedConfig<TUserConfig extends UserConfig = UserConfig> = Omit<TUserConfig, "name" | "title" | "organization" | "compatibilityDate" | "plugins" | "mode" | "environments" | "platform" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "variant" | "type" | "output" | "logLevel" | "framework" | "sourceRoot"> & Required<Pick<TUserConfig, "name" | "title" | "organization" | "compatibilityDate" | "plugins" | "mode" | "environments" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "framework" | "sourceRoot">> & {
|
|
680
680
|
/**
|
|
681
681
|
* The configuration options that were provided inline to the Powerlines CLI.
|
|
682
682
|
*/
|
|
@@ -1234,6 +1234,13 @@ interface CommonUserConfig extends BaseConfig {
|
|
|
1234
1234
|
* If this option is not provided, the build process will try to use the \`description\` value from the `\package.json\` file.
|
|
1235
1235
|
*/
|
|
1236
1236
|
description?: string;
|
|
1237
|
+
/**
|
|
1238
|
+
* The organization or author of the project
|
|
1239
|
+
*
|
|
1240
|
+
* @remarks
|
|
1241
|
+
* If this option is not provided, the build process will try to use the \`author\` value from the \`package.json\` file. If the \`author\` value cannot be determined, the {@link name | name configuration} will be used.
|
|
1242
|
+
*/
|
|
1243
|
+
organization?: string;
|
|
1237
1244
|
/**
|
|
1238
1245
|
* The date to use for compatibility checks
|
|
1239
1246
|
*
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import ts from "typescript";
|
|
2
1
|
import { EnvPaths } from "@stryke/env/get-env-paths";
|
|
3
2
|
import { FetchRequestOptions } from "@stryke/http/fetch";
|
|
4
3
|
import { FunctionLike, MaybePromise, NonUndefined } from "@stryke/types/base";
|
|
@@ -20,6 +19,7 @@ import { PreviewOptions, ResolvedPreviewOptions } from "vite";
|
|
|
20
19
|
import { ResolveOptions } from "@stryke/fs/resolve";
|
|
21
20
|
import { ArrayValues } from "@stryke/types/array";
|
|
22
21
|
import { CompilerOptions, TsConfigJson } from "@stryke/types/tsconfig";
|
|
22
|
+
import ts from "typescript";
|
|
23
23
|
|
|
24
24
|
//#region ../powerlines/src/types/build.d.ts
|
|
25
25
|
type UnpluginBuildVariant = "rollup" | "webpack" | "rspack" | "vite" | "esbuild" | "farm" | "unloader" | "rolldown";
|
|
@@ -676,7 +676,7 @@ type OutputResolvedConfig = Required<Omit<OutputConfig, "assets" | "storage"> &
|
|
|
676
676
|
/**
|
|
677
677
|
* The resolved options for the Powerlines project configuration.
|
|
678
678
|
*/
|
|
679
|
-
type ResolvedConfig<TUserConfig extends UserConfig = UserConfig> = Omit<TUserConfig, "name" | "title" | "compatibilityDate" | "plugins" | "mode" | "environments" | "platform" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "variant" | "type" | "output" | "logLevel" | "framework" | "sourceRoot"> & Required<Pick<TUserConfig, "name" | "title" | "compatibilityDate" | "plugins" | "mode" | "environments" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "framework" | "sourceRoot">> & {
|
|
679
|
+
type ResolvedConfig<TUserConfig extends UserConfig = UserConfig> = Omit<TUserConfig, "name" | "title" | "organization" | "compatibilityDate" | "plugins" | "mode" | "environments" | "platform" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "variant" | "type" | "output" | "logLevel" | "framework" | "sourceRoot"> & Required<Pick<TUserConfig, "name" | "title" | "organization" | "compatibilityDate" | "plugins" | "mode" | "environments" | "tsconfig" | "lint" | "test" | "build" | "transform" | "deploy" | "framework" | "sourceRoot">> & {
|
|
680
680
|
/**
|
|
681
681
|
* The configuration options that were provided inline to the Powerlines CLI.
|
|
682
682
|
*/
|
|
@@ -1234,6 +1234,13 @@ interface CommonUserConfig extends BaseConfig {
|
|
|
1234
1234
|
* If this option is not provided, the build process will try to use the \`description\` value from the `\package.json\` file.
|
|
1235
1235
|
*/
|
|
1236
1236
|
description?: string;
|
|
1237
|
+
/**
|
|
1238
|
+
* The organization or author of the project
|
|
1239
|
+
*
|
|
1240
|
+
* @remarks
|
|
1241
|
+
* If this option is not provided, the build process will try to use the \`author\` value from the \`package.json\` file. If the \`author\` value cannot be determined, the {@link name | name configuration} will be used.
|
|
1242
|
+
*/
|
|
1243
|
+
organization?: string;
|
|
1237
1244
|
/**
|
|
1238
1245
|
* The date to use for compatibility checks
|
|
1239
1246
|
*
|
package/dist/helpers/index.d.cts
CHANGED
package/dist/helpers/index.d.mts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import "../context-
|
|
2
|
-
import { t as typeCheck } from "../type-check-
|
|
1
|
+
import "../context-DJwegHpz.cjs";
|
|
2
|
+
import { t as typeCheck } from "../type-check-yDG1LQxV.cjs";
|
|
3
3
|
export { typeCheck };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import "../context-
|
|
2
|
-
import { t as typeCheck } from "../type-check-
|
|
1
|
+
import "../context-BKnG0PBM.mjs";
|
|
2
|
+
import { t as typeCheck } from "../type-check-CTF3SB99.mjs";
|
|
3
3
|
export { typeCheck };
|
package/dist/index.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { i as Plugin } from "./context-
|
|
2
|
-
import { t as typeCheck } from "./type-check-
|
|
1
|
+
import { i as Plugin } from "./context-DJwegHpz.cjs";
|
|
2
|
+
import { t as typeCheck } from "./type-check-yDG1LQxV.cjs";
|
|
3
3
|
import "./index-D6CnpA_r.cjs";
|
|
4
|
-
import { a as __ΩTypeScriptCompilerPluginContext, c as __ΩTypeScriptCompilerPluginUserConfig, i as TypeScriptCompilerPluginUserConfig, n as TypeScriptCompilerPluginOptions, o as __ΩTypeScriptCompilerPluginOptions, r as TypeScriptCompilerPluginResolvedConfig, s as __ΩTypeScriptCompilerPluginResolvedConfig, t as TypeScriptCompilerPluginContext } from "./plugin-
|
|
4
|
+
import { a as __ΩTypeScriptCompilerPluginContext, c as __ΩTypeScriptCompilerPluginUserConfig, i as TypeScriptCompilerPluginUserConfig, n as TypeScriptCompilerPluginOptions, o as __ΩTypeScriptCompilerPluginOptions, r as TypeScriptCompilerPluginResolvedConfig, s as __ΩTypeScriptCompilerPluginResolvedConfig, t as TypeScriptCompilerPluginContext } from "./plugin-DZYL6q5t.cjs";
|
|
5
5
|
import "./index-DWPDThxu.cjs";
|
|
6
6
|
|
|
7
7
|
//#region src/index.d.ts
|
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { i as Plugin } from "./context-
|
|
2
|
-
import { t as typeCheck } from "./type-check-
|
|
1
|
+
import { i as Plugin } from "./context-BKnG0PBM.mjs";
|
|
2
|
+
import { t as typeCheck } from "./type-check-CTF3SB99.mjs";
|
|
3
3
|
import "./index-DL0uimUT.mjs";
|
|
4
|
-
import { a as __ΩTypeScriptCompilerPluginContext, c as __ΩTypeScriptCompilerPluginUserConfig, i as TypeScriptCompilerPluginUserConfig, n as TypeScriptCompilerPluginOptions, o as __ΩTypeScriptCompilerPluginOptions, r as TypeScriptCompilerPluginResolvedConfig, s as __ΩTypeScriptCompilerPluginResolvedConfig, t as TypeScriptCompilerPluginContext } from "./plugin-
|
|
4
|
+
import { a as __ΩTypeScriptCompilerPluginContext, c as __ΩTypeScriptCompilerPluginUserConfig, i as TypeScriptCompilerPluginUserConfig, n as TypeScriptCompilerPluginOptions, o as __ΩTypeScriptCompilerPluginOptions, r as TypeScriptCompilerPluginResolvedConfig, s as __ΩTypeScriptCompilerPluginResolvedConfig, t as TypeScriptCompilerPluginContext } from "./plugin-BH3d1UOw.mjs";
|
|
5
5
|
import "./index-CUbWeWHc.mjs";
|
|
6
6
|
|
|
7
7
|
//#region src/index.d.ts
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "../context-
|
|
2
|
-
import { a as __ΩTypeScriptCompilerPluginContext, c as __ΩTypeScriptCompilerPluginUserConfig, i as TypeScriptCompilerPluginUserConfig, n as TypeScriptCompilerPluginOptions, o as __ΩTypeScriptCompilerPluginOptions, r as TypeScriptCompilerPluginResolvedConfig, s as __ΩTypeScriptCompilerPluginResolvedConfig, t as TypeScriptCompilerPluginContext } from "../plugin-
|
|
1
|
+
import "../context-DJwegHpz.cjs";
|
|
2
|
+
import { a as __ΩTypeScriptCompilerPluginContext, c as __ΩTypeScriptCompilerPluginUserConfig, i as TypeScriptCompilerPluginUserConfig, n as TypeScriptCompilerPluginOptions, o as __ΩTypeScriptCompilerPluginOptions, r as TypeScriptCompilerPluginResolvedConfig, s as __ΩTypeScriptCompilerPluginResolvedConfig, t as TypeScriptCompilerPluginContext } from "../plugin-DZYL6q5t.cjs";
|
|
3
3
|
import "../index-DWPDThxu.cjs";
|
|
4
4
|
export { TypeScriptCompilerPluginContext, TypeScriptCompilerPluginOptions, TypeScriptCompilerPluginResolvedConfig, TypeScriptCompilerPluginUserConfig, __ΩTypeScriptCompilerPluginContext, __ΩTypeScriptCompilerPluginOptions, __ΩTypeScriptCompilerPluginResolvedConfig, __ΩTypeScriptCompilerPluginUserConfig };
|
package/dist/types/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "../context-
|
|
2
|
-
import { a as __ΩTypeScriptCompilerPluginContext, c as __ΩTypeScriptCompilerPluginUserConfig, i as TypeScriptCompilerPluginUserConfig, n as TypeScriptCompilerPluginOptions, o as __ΩTypeScriptCompilerPluginOptions, r as TypeScriptCompilerPluginResolvedConfig, s as __ΩTypeScriptCompilerPluginResolvedConfig, t as TypeScriptCompilerPluginContext } from "../plugin-
|
|
1
|
+
import "../context-BKnG0PBM.mjs";
|
|
2
|
+
import { a as __ΩTypeScriptCompilerPluginContext, c as __ΩTypeScriptCompilerPluginUserConfig, i as TypeScriptCompilerPluginUserConfig, n as TypeScriptCompilerPluginOptions, o as __ΩTypeScriptCompilerPluginOptions, r as TypeScriptCompilerPluginResolvedConfig, s as __ΩTypeScriptCompilerPluginResolvedConfig, t as TypeScriptCompilerPluginContext } from "../plugin-BH3d1UOw.mjs";
|
|
3
3
|
import "../index-CUbWeWHc.mjs";
|
|
4
4
|
export { TypeScriptCompilerPluginContext, TypeScriptCompilerPluginOptions, TypeScriptCompilerPluginResolvedConfig, TypeScriptCompilerPluginUserConfig, __ΩTypeScriptCompilerPluginContext, __ΩTypeScriptCompilerPluginOptions, __ΩTypeScriptCompilerPluginResolvedConfig, __ΩTypeScriptCompilerPluginUserConfig };
|
package/dist/types/plugin.d.cts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import "../context-
|
|
2
|
-
import { a as __ΩTypeScriptCompilerPluginContext, c as __ΩTypeScriptCompilerPluginUserConfig, i as TypeScriptCompilerPluginUserConfig, n as TypeScriptCompilerPluginOptions, o as __ΩTypeScriptCompilerPluginOptions, r as TypeScriptCompilerPluginResolvedConfig, s as __ΩTypeScriptCompilerPluginResolvedConfig, t as TypeScriptCompilerPluginContext } from "../plugin-
|
|
1
|
+
import "../context-DJwegHpz.cjs";
|
|
2
|
+
import { a as __ΩTypeScriptCompilerPluginContext, c as __ΩTypeScriptCompilerPluginUserConfig, i as TypeScriptCompilerPluginUserConfig, n as TypeScriptCompilerPluginOptions, o as __ΩTypeScriptCompilerPluginOptions, r as TypeScriptCompilerPluginResolvedConfig, s as __ΩTypeScriptCompilerPluginResolvedConfig, t as TypeScriptCompilerPluginContext } from "../plugin-DZYL6q5t.cjs";
|
|
3
3
|
export { TypeScriptCompilerPluginContext, TypeScriptCompilerPluginOptions, TypeScriptCompilerPluginResolvedConfig, TypeScriptCompilerPluginUserConfig, __ΩTypeScriptCompilerPluginContext, __ΩTypeScriptCompilerPluginOptions, __ΩTypeScriptCompilerPluginResolvedConfig, __ΩTypeScriptCompilerPluginUserConfig };
|
package/dist/types/plugin.d.mts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import "../context-
|
|
2
|
-
import { a as __ΩTypeScriptCompilerPluginContext, c as __ΩTypeScriptCompilerPluginUserConfig, i as TypeScriptCompilerPluginUserConfig, n as TypeScriptCompilerPluginOptions, o as __ΩTypeScriptCompilerPluginOptions, r as TypeScriptCompilerPluginResolvedConfig, s as __ΩTypeScriptCompilerPluginResolvedConfig, t as TypeScriptCompilerPluginContext } from "../plugin-
|
|
1
|
+
import "../context-BKnG0PBM.mjs";
|
|
2
|
+
import { a as __ΩTypeScriptCompilerPluginContext, c as __ΩTypeScriptCompilerPluginUserConfig, i as TypeScriptCompilerPluginUserConfig, n as TypeScriptCompilerPluginOptions, o as __ΩTypeScriptCompilerPluginOptions, r as TypeScriptCompilerPluginResolvedConfig, s as __ΩTypeScriptCompilerPluginResolvedConfig, t as TypeScriptCompilerPluginContext } from "../plugin-BH3d1UOw.mjs";
|
|
3
3
|
export { TypeScriptCompilerPluginContext, TypeScriptCompilerPluginOptions, TypeScriptCompilerPluginResolvedConfig, TypeScriptCompilerPluginUserConfig, __ΩTypeScriptCompilerPluginContext, __ΩTypeScriptCompilerPluginOptions, __ΩTypeScriptCompilerPluginResolvedConfig, __ΩTypeScriptCompilerPluginUserConfig };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-tsc",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.131",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing the TypeScript compiler plugin for Powerlines.",
|
|
6
6
|
"repository": {
|
|
@@ -146,13 +146,13 @@
|
|
|
146
146
|
"keywords": ["tsc", "powerlines", "storm-software", "powerlines-plugin"],
|
|
147
147
|
"dependencies": {
|
|
148
148
|
"defu": "^6.1.4",
|
|
149
|
-
"powerlines": "^0.36.
|
|
149
|
+
"powerlines": "^0.36.27",
|
|
150
150
|
"typescript": "^5.9.3"
|
|
151
151
|
},
|
|
152
152
|
"devDependencies": {
|
|
153
|
-
"@powerlines/nx": "^0.11.
|
|
153
|
+
"@powerlines/nx": "^0.11.53",
|
|
154
154
|
"@types/node": "^24.10.4"
|
|
155
155
|
},
|
|
156
156
|
"publishConfig": { "access": "public" },
|
|
157
|
-
"gitHead": "
|
|
157
|
+
"gitHead": "fbc59ce584fd0f78d90d2dbaa18f9c9267bd3b61"
|
|
158
158
|
}
|