@powerlines/plugin-tsc 0.3.205 → 0.3.206
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/helpers/index.d.cts +1 -1
- package/dist/helpers/index.d.mts +1 -1
- package/dist/helpers/type-check.d.cts +2 -11
- package/dist/helpers/type-check.d.mts +2 -11
- package/dist/index.cjs +28 -2
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/type-check-DokMiHAX.d.cts +11 -0
- package/dist/type-check-DokMiHAX.d.cts.map +1 -0
- package/dist/type-check-DokMiHAX.d.mts +11 -0
- package/dist/type-check-DokMiHAX.d.mts.map +1 -0
- package/dist/types/index.cjs +1 -0
- package/dist/types/index.mjs +2 -0
- package/package.json +3 -3
- package/dist/_virtual/_rolldown/runtime.cjs +0 -28
- package/dist/helpers/type-check.d.cts.map +0 -1
- package/dist/helpers/type-check.d.mts.map +0 -1
package/dist/helpers/index.d.cts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { typeCheck } from "
|
|
1
|
+
import { t as typeCheck } from "../type-check-DokMiHAX.cjs";
|
|
2
2
|
export { typeCheck };
|
package/dist/helpers/index.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { typeCheck } from "
|
|
1
|
+
import { t as typeCheck } from "../type-check-DokMiHAX.mjs";
|
|
2
2
|
export { typeCheck };
|
|
@@ -1,11 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* Perform type checks on the provided sources using TypeScript's compiler API.
|
|
5
|
-
*
|
|
6
|
-
* @param context - The build context containing information about the current build.
|
|
7
|
-
*/
|
|
8
|
-
declare function typeCheck(context: Context): Promise<void>;
|
|
9
|
-
//#endregion
|
|
10
|
-
export { typeCheck };
|
|
11
|
-
//# sourceMappingURL=type-check.d.cts.map
|
|
1
|
+
import { t as typeCheck } from "../type-check-DokMiHAX.cjs";
|
|
2
|
+
export { typeCheck };
|
|
@@ -1,11 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* Perform type checks on the provided sources using TypeScript's compiler API.
|
|
5
|
-
*
|
|
6
|
-
* @param context - The build context containing information about the current build.
|
|
7
|
-
*/
|
|
8
|
-
declare function typeCheck(context: Context): Promise<void>;
|
|
9
|
-
//#endregion
|
|
10
|
-
export { typeCheck };
|
|
11
|
-
//# sourceMappingURL=type-check.d.mts.map
|
|
1
|
+
import { t as typeCheck } from "../type-check-DokMiHAX.mjs";
|
|
2
|
+
export { typeCheck };
|
package/dist/index.cjs
CHANGED
|
@@ -1,10 +1,36 @@
|
|
|
1
1
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
2
|
-
|
|
2
|
+
//#region \0rolldown/runtime.js
|
|
3
|
+
var __create = Object.create;
|
|
4
|
+
var __defProp = Object.defineProperty;
|
|
5
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
6
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
8
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
12
|
+
key = keys[i];
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except) {
|
|
14
|
+
__defProp(to, key, {
|
|
15
|
+
get: ((k) => from[k]).bind(null, key),
|
|
16
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
return to;
|
|
22
|
+
};
|
|
23
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule || !__hasOwnProp.call(mod, "default") ? __defProp(target, "default", {
|
|
24
|
+
value: mod,
|
|
25
|
+
enumerable: true
|
|
26
|
+
}) : target, mod));
|
|
27
|
+
|
|
28
|
+
//#endregion
|
|
3
29
|
const require_helpers_type_check = require('./helpers/type-check.cjs');
|
|
4
30
|
require('./helpers/index.cjs');
|
|
5
31
|
let powerlines_plugin_utils = require("powerlines/plugin-utils");
|
|
6
32
|
let typescript = require("typescript");
|
|
7
|
-
typescript =
|
|
33
|
+
typescript = __toESM(typescript, 1);
|
|
8
34
|
|
|
9
35
|
//#region src/index.ts
|
|
10
36
|
/**
|
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { typeCheck } from "./
|
|
1
|
+
import { t as typeCheck } from "./type-check-DokMiHAX.cjs";
|
|
2
2
|
import "./helpers/index.cjs";
|
|
3
3
|
import { TypeScriptCompilerPluginContext, TypeScriptCompilerPluginOptions, TypeScriptCompilerPluginResolvedConfig, TypeScriptCompilerPluginUserConfig } from "./types/plugin.cjs";
|
|
4
4
|
import "./types/index.cjs";
|
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { typeCheck } from "./
|
|
1
|
+
import { t as typeCheck } from "./type-check-DokMiHAX.mjs";
|
|
2
2
|
import "./helpers/index.mjs";
|
|
3
3
|
import { TypeScriptCompilerPluginContext, TypeScriptCompilerPluginOptions, TypeScriptCompilerPluginResolvedConfig, TypeScriptCompilerPluginUserConfig } from "./types/plugin.mjs";
|
|
4
4
|
import "./types/index.mjs";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Context } from "powerlines";
|
|
2
|
+
//#region src/helpers/type-check.d.ts
|
|
3
|
+
/**
|
|
4
|
+
* Perform type checks on the provided sources using TypeScript's compiler API.
|
|
5
|
+
*
|
|
6
|
+
* @param context - The build context containing information about the current build.
|
|
7
|
+
*/
|
|
8
|
+
declare function typeCheck(context: Context): Promise<void>;
|
|
9
|
+
//#endregion
|
|
10
|
+
export { typeCheck as t };
|
|
11
|
+
//# sourceMappingURL=type-check-DokMiHAX.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"type-check-DokMiHAX.d.cts","names":[],"sources":["../src/helpers/type-check.ts"],"mappings":";;;;;;;iBA4BsB,UAAU,SAAS,UAAU"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Context } from "powerlines";
|
|
2
|
+
//#region src/helpers/type-check.d.ts
|
|
3
|
+
/**
|
|
4
|
+
* Perform type checks on the provided sources using TypeScript's compiler API.
|
|
5
|
+
*
|
|
6
|
+
* @param context - The build context containing information about the current build.
|
|
7
|
+
*/
|
|
8
|
+
declare function typeCheck(context: Context): Promise<void>;
|
|
9
|
+
//#endregion
|
|
10
|
+
export { typeCheck as t };
|
|
11
|
+
//# sourceMappingURL=type-check-DokMiHAX.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"type-check-DokMiHAX.d.mts","names":[],"sources":["../src/helpers/type-check.ts"],"mappings":""}
|
package/dist/types/index.cjs
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require('./plugin.cjs');
|
package/dist/types/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-tsc",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.206",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing the TypeScript compiler plugin for Powerlines.",
|
|
6
6
|
"repository": {
|
|
@@ -125,9 +125,9 @@
|
|
|
125
125
|
"unplugin": "^3.3.0"
|
|
126
126
|
},
|
|
127
127
|
"devDependencies": {
|
|
128
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
128
|
+
"@powerlines/plugin-plugin": "^0.12.621",
|
|
129
129
|
"@types/node": "^25.9.5"
|
|
130
130
|
},
|
|
131
131
|
"publishConfig": { "access": "public" },
|
|
132
|
-
"gitHead": "
|
|
132
|
+
"gitHead": "a060bb776b719e7628c30f82d4fb4305fbcd1581"
|
|
133
133
|
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
//#region \0rolldown/runtime.js
|
|
2
|
-
var __create = Object.create;
|
|
3
|
-
var __defProp = Object.defineProperty;
|
|
4
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
-
var __copyProps = (to, from, except, desc) => {
|
|
9
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
10
|
-
for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
11
|
-
key = keys[i];
|
|
12
|
-
if (!__hasOwnProp.call(to, key) && key !== except) {
|
|
13
|
-
__defProp(to, key, {
|
|
14
|
-
get: ((k) => from[k]).bind(null, key),
|
|
15
|
-
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
16
|
-
});
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
return to;
|
|
21
|
-
};
|
|
22
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule || !__hasOwnProp.call(mod, "default") ? __defProp(target, "default", {
|
|
23
|
-
value: mod,
|
|
24
|
-
enumerable: true
|
|
25
|
-
}) : target, mod));
|
|
26
|
-
|
|
27
|
-
//#endregion
|
|
28
|
-
exports.__toESM = __toESM;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"type-check.d.cts","names":[],"sources":["../../src/helpers/type-check.ts"],"mappings":";;;;;;;iBA4BsB,UAAU,SAAS,UAAU"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"type-check.d.mts","names":[],"sources":["../../src/helpers/type-check.ts"],"mappings":""}
|