@xylabs/ts-scripts-yarn3 3.1.7 → 3.1.10
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/deploy.js +0 -1
- package/dist/actions/deploy.js.map +1 -1
- package/dist/actions/deploy.mjs +0 -1
- package/dist/actions/deploy.mjs.map +1 -1
- 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 +5 -7
- package/src/actions/deploy.ts +0 -1
- 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
package/dist/actions/deploy.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/actions/deploy.ts"],"sourcesContent":["import { runSteps } from '../lib'\n\nexport const deploy = () => {\n return runSteps('Deploy [Patch]', [\n ['yarn', 'workspaces foreach --all version patch --deferred'],\n ['yarn', 'xy clean'],\n ['yarn', 'xy build'],\n ['yarn', 'xy cycle'],\n ['yarn', '
|
|
1
|
+
{"version":3,"sources":["../../src/actions/deploy.ts"],"sourcesContent":["import { runSteps } from '../lib'\n\nexport const deploy = () => {\n return runSteps('Deploy [Patch]', [\n ['yarn', 'workspaces foreach --all version patch --deferred'],\n ['yarn', 'xy clean'],\n ['yarn', 'xy build'],\n ['yarn', 'xy cycle'],\n ['yarn', 'version apply --all'],\n ['yarn', 'workspaces foreach -pt npm publish'],\n ])\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,iBAAyB;AAElB,MAAM,SAAS,MAAM;AAC1B,aAAO,qBAAS,kBAAkB;AAAA,IAChC,CAAC,QAAQ,mDAAmD;AAAA,IAC5D,CAAC,QAAQ,UAAU;AAAA,IACnB,CAAC,QAAQ,UAAU;AAAA,IACnB,CAAC,QAAQ,UAAU;AAAA,IACnB,CAAC,QAAQ,qBAAqB;AAAA,IAC9B,CAAC,QAAQ,oCAAoC;AAAA,EAC/C,CAAC;AACH;","names":[]}
|
package/dist/actions/deploy.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/actions/deploy.ts"],"sourcesContent":["import { runSteps } from '../lib'\n\nexport const deploy = () => {\n return runSteps('Deploy [Patch]', [\n ['yarn', 'workspaces foreach --all version patch --deferred'],\n ['yarn', 'xy clean'],\n ['yarn', 'xy build'],\n ['yarn', 'xy cycle'],\n ['yarn', '
|
|
1
|
+
{"version":3,"sources":["../../src/actions/deploy.ts"],"sourcesContent":["import { runSteps } from '../lib'\n\nexport const deploy = () => {\n return runSteps('Deploy [Patch]', [\n ['yarn', 'workspaces foreach --all version patch --deferred'],\n ['yarn', 'xy clean'],\n ['yarn', 'xy build'],\n ['yarn', 'xy cycle'],\n ['yarn', 'version apply --all'],\n ['yarn', 'workspaces foreach -pt npm publish'],\n ])\n}\n"],"mappings":"AAAA,SAAS,gBAAgB;AAElB,MAAM,SAAS,MAAM;AAC1B,SAAO,SAAS,kBAAkB;AAAA,IAChC,CAAC,QAAQ,mDAAmD;AAAA,IAC5D,CAAC,QAAQ,UAAU;AAAA,IACnB,CAAC,QAAQ,UAAU;AAAA,IACnB,CAAC,QAAQ,UAAU;AAAA,IACnB,CAAC,QAAQ,qBAAqB;AAAA,IAC9B,CAAC,QAAQ,oCAAoC;AAAA,EAC/C,CAAC;AACH;","names":[]}
|
|
@@ -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,9 +64,10 @@
|
|
|
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.10",
|
|
68
68
|
"chalk": "^4.1.2",
|
|
69
69
|
"cosmiconfig": "^8.3.6",
|
|
70
|
+
"cosmiconfig-typescript-loader": "^5.0.0",
|
|
70
71
|
"cpy": "^8.1.2",
|
|
71
72
|
"depcheck": "^1.4.6",
|
|
72
73
|
"eslint": "^8.50.0",
|
|
@@ -109,8 +110,8 @@
|
|
|
109
110
|
"@types/license-checker": "^25.0.4",
|
|
110
111
|
"@types/lodash": "^4.14.199",
|
|
111
112
|
"@types/parse-git-config": "^3.0.2",
|
|
112
|
-
"@xylabs/eslint-config": "^3.1.
|
|
113
|
-
"@xylabs/tsconfig": "^3.1.
|
|
113
|
+
"@xylabs/eslint-config": "^3.1.10",
|
|
114
|
+
"@xylabs/tsconfig": "^3.1.10",
|
|
114
115
|
"publint": "^0.2.3",
|
|
115
116
|
"typescript": "^5.2.2"
|
|
116
117
|
},
|
|
@@ -144,9 +145,6 @@
|
|
|
144
145
|
"./cjs": {
|
|
145
146
|
"default": "./dist/index.js"
|
|
146
147
|
},
|
|
147
|
-
"./docs": {
|
|
148
|
-
"default": "./dist/docs.json"
|
|
149
|
-
},
|
|
150
148
|
"./esm": {
|
|
151
149
|
"default": "./dist/index.mjs"
|
|
152
150
|
},
|
|
@@ -169,5 +167,5 @@
|
|
|
169
167
|
"package-clean": "echo Not cleaning..."
|
|
170
168
|
},
|
|
171
169
|
"sideEffects": false,
|
|
172
|
-
"version": "3.1.
|
|
170
|
+
"version": "3.1.10"
|
|
173
171
|
}
|
package/src/actions/deploy.ts
CHANGED
|
@@ -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":[]}
|