@xylabs/ts-scripts-yarn3 3.1.7 → 3.1.9
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/actions/package/compile/XyConfig.js.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +4 -4
- package/src/actions/package/compile/XyConfig.ts +1 -1
- package/dist/actions/package/compile/CompileParams.js +0 -17
- package/dist/actions/package/compile/CompileParams.js.map +0 -1
- package/dist/actions/package/compile/CompileParams.mjs +0 -1
- package/dist/actions/package/compile/CompileParams.mjs.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../src/actions/package/compile/XyConfig.ts"],"sourcesContent":["import { Options } from 'tsup'\n\nexport type EntryMode = 'all' | 'single' | 'auto' | 'platform'\n\nexport type CompileMode = 'tsup' | 'tsc'\n\nexport interface LiveShareConfig {\n exclude?: string[]\n include?: string[]\n}\n\nexport interface CompileConfig {\n depth?: number\n /** @param entryMode all, single, platform, or auto */\n entryMode?: EntryMode\n /** @param files Manually specify the files to be compiled */\n files?: string[]\n mode?: CompileMode\n}\n\nexport type PackageCompileTsupConfig = CompileConfig & {\n browser?: Record<string, Options | boolean>\n mode
|
|
1
|
+
{"version":3,"sources":["../../../../src/actions/package/compile/XyConfig.ts"],"sourcesContent":["import { Options } from 'tsup'\n\nexport type EntryMode = 'all' | 'single' | 'auto' | 'platform'\n\nexport type CompileMode = 'tsup' | 'tsc'\n\nexport interface LiveShareConfig {\n exclude?: string[]\n include?: string[]\n}\n\nexport interface CompileConfig {\n depth?: number\n /** @param entryMode all, single, platform, or auto */\n entryMode?: EntryMode\n /** @param files Manually specify the files to be compiled */\n files?: string[]\n mode?: CompileMode\n}\n\nexport type PackageCompileTsupConfig = CompileConfig & {\n browser?: Record<string, Options | boolean>\n mode?: 'tsup'\n node?: Record<string, Options | boolean>\n tsup?: {\n options?: Options\n }\n}\n\nexport type PackageCompileTscConfig = CompileConfig & {\n mode: 'tsc'\n}\n\nexport interface XyConfigBase {\n compile?: CompileConfig\n liveShare?: LiveShareConfig\n publint?: boolean\n verbose?: boolean\n}\n\nexport interface XyTsupConfig extends XyConfigBase {\n compile?: PackageCompileTsupConfig\n}\n\nexport interface XyTscConfig extends XyConfigBase {\n compile?: PackageCompileTscConfig\n}\n\nexport type XyConfig = XyTsupConfig | XyTscConfig\n"],"mappings":";;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
|
package/dist/index.d.mts
CHANGED
|
@@ -139,7 +139,7 @@ interface CompileConfig {
|
|
|
139
139
|
}
|
|
140
140
|
type PackageCompileTsupConfig = CompileConfig & {
|
|
141
141
|
browser?: Record<string, Options | boolean>;
|
|
142
|
-
mode
|
|
142
|
+
mode?: 'tsup';
|
|
143
143
|
node?: Record<string, Options | boolean>;
|
|
144
144
|
tsup?: {
|
|
145
145
|
options?: Options;
|
package/dist/index.d.ts
CHANGED
|
@@ -139,7 +139,7 @@ interface CompileConfig {
|
|
|
139
139
|
}
|
|
140
140
|
type PackageCompileTsupConfig = CompileConfig & {
|
|
141
141
|
browser?: Record<string, Options | boolean>;
|
|
142
|
-
mode
|
|
142
|
+
mode?: 'tsup';
|
|
143
143
|
node?: Record<string, Options | boolean>;
|
|
144
144
|
tsup?: {
|
|
145
145
|
options?: Options;
|
package/package.json
CHANGED
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"@types/yargs": "^17.0.26",
|
|
65
65
|
"@typescript-eslint/eslint-plugin": "^6.7.3",
|
|
66
66
|
"@typescript-eslint/parser": "^6.7.3",
|
|
67
|
-
"@xylabs/tsconfig": "~3.1.
|
|
67
|
+
"@xylabs/tsconfig": "~3.1.9",
|
|
68
68
|
"chalk": "^4.1.2",
|
|
69
69
|
"cosmiconfig": "^8.3.6",
|
|
70
70
|
"cpy": "^8.1.2",
|
|
@@ -109,8 +109,8 @@
|
|
|
109
109
|
"@types/license-checker": "^25.0.4",
|
|
110
110
|
"@types/lodash": "^4.14.199",
|
|
111
111
|
"@types/parse-git-config": "^3.0.2",
|
|
112
|
-
"@xylabs/eslint-config": "^3.1.
|
|
113
|
-
"@xylabs/tsconfig": "^3.1.
|
|
112
|
+
"@xylabs/eslint-config": "^3.1.9",
|
|
113
|
+
"@xylabs/tsconfig": "^3.1.9",
|
|
114
114
|
"publint": "^0.2.3",
|
|
115
115
|
"typescript": "^5.2.2"
|
|
116
116
|
},
|
|
@@ -169,5 +169,5 @@
|
|
|
169
169
|
"package-clean": "echo Not cleaning..."
|
|
170
170
|
},
|
|
171
171
|
"sideEffects": false,
|
|
172
|
-
"version": "3.1.
|
|
172
|
+
"version": "3.1.9"
|
|
173
173
|
}
|
|
@@ -20,7 +20,7 @@ export interface CompileConfig {
|
|
|
20
20
|
|
|
21
21
|
export type PackageCompileTsupConfig = CompileConfig & {
|
|
22
22
|
browser?: Record<string, Options | boolean>
|
|
23
|
-
mode
|
|
23
|
+
mode?: 'tsup'
|
|
24
24
|
node?: Record<string, Options | boolean>
|
|
25
25
|
tsup?: {
|
|
26
26
|
options?: Options
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __copyProps = (to, from, except, desc) => {
|
|
7
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
8
|
-
for (let key of __getOwnPropNames(from))
|
|
9
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
10
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
11
|
-
}
|
|
12
|
-
return to;
|
|
13
|
-
};
|
|
14
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
15
|
-
var CompileParams_exports = {};
|
|
16
|
-
module.exports = __toCommonJS(CompileParams_exports);
|
|
17
|
-
//# sourceMappingURL=CompileParams.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../src/actions/package/compile/CompileParams.ts"],"sourcesContent":["import { Options } from 'tsup'\n\nexport type EntryMode = 'all' | 'single' | 'auto' | 'platform'\n\nexport type CompileMode = 'tsup' | 'tsc'\n\nexport interface LiveShareConfig {\n exclude?: string[]\n include?: string[]\n}\n\nexport interface CompileConfig {\n depth?: number\n /** @param entryMode all, single, platform, or auto */\n entryMode?: EntryMode\n /** @param files Manually specify the files to be compiled */\n files?: string[]\n mode?: CompileMode\n}\n\nexport type PackageCompileTsupConfig = CompileConfig & {\n browser?: Record<string, Options | boolean>\n mode: 'tsup' | undefined\n node?: Record<string, Options | boolean>\n tsup?: {\n options?: Options\n }\n}\n\nexport type PackageCompileTscConfig = CompileConfig & {\n mode: 'tsc'\n}\n\nexport interface XyConfigBase {\n compile?: CompileConfig\n liveShare?: LiveShareConfig\n publint?: boolean\n verbose?: boolean\n}\n\nexport interface XyTsupConfig extends XyConfigBase {\n compile?: PackageCompileTsupConfig\n}\n\nexport interface XyTscConfig extends XyConfigBase {\n compile?: PackageCompileTscConfig\n}\n\nexport type XyConfig = XyTsupConfig | XyTscConfig\n"],"mappings":";;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
//# sourceMappingURL=CompileParams.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|