@xylabs/ts-scripts-yarn3 3.5.2 → 3.9.1
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/clean.js.map +1 -1
- package/dist/actions/clean.mjs.map +1 -1
- package/dist/actions/deploy-major.js +1 -1
- package/dist/actions/deploy-major.js.map +1 -1
- package/dist/actions/deploy-major.mjs +1 -1
- package/dist/actions/deploy-major.mjs.map +1 -1
- package/dist/actions/deploy-minor.js +1 -1
- package/dist/actions/deploy-minor.js.map +1 -1
- package/dist/actions/deploy-minor.mjs +1 -1
- package/dist/actions/deploy-minor.mjs.map +1 -1
- package/dist/actions/deploy-next.js +1 -1
- package/dist/actions/deploy-next.js.map +1 -1
- package/dist/actions/deploy-next.mjs +1 -1
- package/dist/actions/deploy-next.mjs.map +1 -1
- package/dist/actions/deploy.js +1 -1
- package/dist/actions/deploy.js.map +1 -1
- package/dist/actions/deploy.mjs +1 -1
- package/dist/actions/deploy.mjs.map +1 -1
- package/package.json +20 -19
- package/src/actions/clean.ts +0 -1
- package/src/actions/deploy-major.ts +1 -1
- package/src/actions/deploy-minor.ts +1 -1
- package/src/actions/deploy-next.ts +1 -1
- package/src/actions/deploy.ts +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/actions/clean.ts"],"sourcesContent":["import { runStepsAsync } from '../lib'\n\
|
|
1
|
+
{"version":3,"sources":["../../src/actions/clean.ts"],"sourcesContent":["import { runStepsAsync } from '../lib'\n\nexport interface CleanParams {\n pkg?: string\n verbose?: boolean\n}\n\nexport interface CleanPackageParams {\n pkg: string\n verbose?: boolean\n}\n\nexport const clean = async ({ verbose, pkg }: CleanParams) => {\n return pkg ? await cleanPackage({ pkg, verbose }) : cleanAll({ verbose })\n}\n\nexport const cleanPackage = ({ pkg }: CleanPackageParams) => {\n return runStepsAsync(`Clean [${pkg}]`, [['yarn', ['workspace', pkg, 'run', 'package-clean']]])\n}\n\nexport const cleanAll = ({ verbose }: CleanParams) => {\n const verboseOptions = verbose ? ['--verbose'] : ['--no-verbose']\n return runStepsAsync('Clean', [['yarn', ['workspaces foreach', '-pA', '--jobs 64', ...verboseOptions, 'run', 'package-clean']]])\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,iBAA8B;AAYvB,MAAM,QAAQ,OAAO,EAAE,SAAS,IAAI,MAAmB;AAC5D,SAAO,MAAM,MAAM,aAAa,EAAE,KAAK,QAAQ,CAAC,IAAI,SAAS,EAAE,QAAQ,CAAC;AAC1E;AAEO,MAAM,eAAe,CAAC,EAAE,IAAI,MAA0B;AAC3D,aAAO,0BAAc,UAAU,GAAG,KAAK,CAAC,CAAC,QAAQ,CAAC,aAAa,KAAK,OAAO,eAAe,CAAC,CAAC,CAAC;AAC/F;AAEO,MAAM,WAAW,CAAC,EAAE,QAAQ,MAAmB;AACpD,QAAM,iBAAiB,UAAU,CAAC,WAAW,IAAI,CAAC,cAAc;AAChE,aAAO,0BAAc,SAAS,CAAC,CAAC,QAAQ,CAAC,sBAAsB,OAAO,aAAa,GAAG,gBAAgB,OAAO,eAAe,CAAC,CAAC,CAAC;AACjI;","names":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/actions/clean.ts"],"sourcesContent":["import { runStepsAsync } from '../lib'\n\
|
|
1
|
+
{"version":3,"sources":["../../src/actions/clean.ts"],"sourcesContent":["import { runStepsAsync } from '../lib'\n\nexport interface CleanParams {\n pkg?: string\n verbose?: boolean\n}\n\nexport interface CleanPackageParams {\n pkg: string\n verbose?: boolean\n}\n\nexport const clean = async ({ verbose, pkg }: CleanParams) => {\n return pkg ? await cleanPackage({ pkg, verbose }) : cleanAll({ verbose })\n}\n\nexport const cleanPackage = ({ pkg }: CleanPackageParams) => {\n return runStepsAsync(`Clean [${pkg}]`, [['yarn', ['workspace', pkg, 'run', 'package-clean']]])\n}\n\nexport const cleanAll = ({ verbose }: CleanParams) => {\n const verboseOptions = verbose ? ['--verbose'] : ['--no-verbose']\n return runStepsAsync('Clean', [['yarn', ['workspaces foreach', '-pA', '--jobs 64', ...verboseOptions, 'run', 'package-clean']]])\n}\n"],"mappings":"AAAA,SAAS,qBAAqB;AAYvB,MAAM,QAAQ,OAAO,EAAE,SAAS,IAAI,MAAmB;AAC5D,SAAO,MAAM,MAAM,aAAa,EAAE,KAAK,QAAQ,CAAC,IAAI,SAAS,EAAE,QAAQ,CAAC;AAC1E;AAEO,MAAM,eAAe,CAAC,EAAE,IAAI,MAA0B;AAC3D,SAAO,cAAc,UAAU,GAAG,KAAK,CAAC,CAAC,QAAQ,CAAC,aAAa,KAAK,OAAO,eAAe,CAAC,CAAC,CAAC;AAC/F;AAEO,MAAM,WAAW,CAAC,EAAE,QAAQ,MAAmB;AACpD,QAAM,iBAAiB,UAAU,CAAC,WAAW,IAAI,CAAC,cAAc;AAChE,SAAO,cAAc,SAAS,CAAC,CAAC,QAAQ,CAAC,sBAAsB,OAAO,aAAa,GAAG,gBAAgB,OAAO,eAAe,CAAC,CAAC,CAAC;AACjI;","names":[]}
|
|
@@ -29,7 +29,7 @@ const deployMajor = () => {
|
|
|
29
29
|
["yarn", "xy build"],
|
|
30
30
|
["yarn", "xy cycle"],
|
|
31
31
|
["yarn", "version apply --all"],
|
|
32
|
-
["yarn", "workspaces foreach --all npm publish"]
|
|
32
|
+
["yarn", "workspaces foreach --all --parallel npm publish"]
|
|
33
33
|
]);
|
|
34
34
|
};
|
|
35
35
|
// Annotate the CommonJS export names for ESM import in node:
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/actions/deploy-major.ts"],"sourcesContent":["import { runSteps } from '../lib'\n\nexport const deployMajor = () => {\n return runSteps('Deploy [Major]', [\n ['yarn', 'workspaces foreach --all version major --deferred'],\n ['yarn', 'xy clean'],\n ['yarn', 'xy build'],\n ['yarn', 'xy cycle'],\n ['yarn', 'version apply --all'],\n ['yarn', 'workspaces foreach --all npm publish'],\n ])\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,iBAAyB;AAElB,MAAM,cAAc,MAAM;AAC/B,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,
|
|
1
|
+
{"version":3,"sources":["../../src/actions/deploy-major.ts"],"sourcesContent":["import { runSteps } from '../lib'\n\nexport const deployMajor = () => {\n return runSteps('Deploy [Major]', [\n ['yarn', 'workspaces foreach --all version major --deferred'],\n ['yarn', 'xy clean'],\n ['yarn', 'xy build'],\n ['yarn', 'xy cycle'],\n ['yarn', 'version apply --all'],\n ['yarn', 'workspaces foreach --all --parallel npm publish'],\n ])\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,iBAAyB;AAElB,MAAM,cAAc,MAAM;AAC/B,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,iDAAiD;AAAA,EAC5D,CAAC;AACH;","names":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/actions/deploy-major.ts"],"sourcesContent":["import { runSteps } from '../lib'\n\nexport const deployMajor = () => {\n return runSteps('Deploy [Major]', [\n ['yarn', 'workspaces foreach --all version major --deferred'],\n ['yarn', 'xy clean'],\n ['yarn', 'xy build'],\n ['yarn', 'xy cycle'],\n ['yarn', 'version apply --all'],\n ['yarn', 'workspaces foreach --all npm publish'],\n ])\n}\n"],"mappings":"AAAA,SAAS,gBAAgB;AAElB,MAAM,cAAc,MAAM;AAC/B,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,
|
|
1
|
+
{"version":3,"sources":["../../src/actions/deploy-major.ts"],"sourcesContent":["import { runSteps } from '../lib'\n\nexport const deployMajor = () => {\n return runSteps('Deploy [Major]', [\n ['yarn', 'workspaces foreach --all version major --deferred'],\n ['yarn', 'xy clean'],\n ['yarn', 'xy build'],\n ['yarn', 'xy cycle'],\n ['yarn', 'version apply --all'],\n ['yarn', 'workspaces foreach --all --parallel npm publish'],\n ])\n}\n"],"mappings":"AAAA,SAAS,gBAAgB;AAElB,MAAM,cAAc,MAAM;AAC/B,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,iDAAiD;AAAA,EAC5D,CAAC;AACH;","names":[]}
|
|
@@ -29,7 +29,7 @@ const deployMinor = () => {
|
|
|
29
29
|
["yarn", "xy build"],
|
|
30
30
|
["yarn", "xy cycle"],
|
|
31
31
|
["yarn", "version apply --all"],
|
|
32
|
-
["yarn", "workspaces foreach --all npm publish"]
|
|
32
|
+
["yarn", "workspaces foreach --all --parallel npm publish"]
|
|
33
33
|
]);
|
|
34
34
|
};
|
|
35
35
|
// Annotate the CommonJS export names for ESM import in node:
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/actions/deploy-minor.ts"],"sourcesContent":["import { runSteps } from '../lib'\n\nexport const deployMinor = () => {\n return runSteps('Deploy [Minor]', [\n ['yarn', 'workspaces foreach --all version minor --deferred'],\n ['yarn', 'xy clean'],\n ['yarn', 'xy build'],\n ['yarn', 'xy cycle'],\n ['yarn', 'version apply --all'],\n ['yarn', 'workspaces foreach --all npm publish'],\n ])\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,iBAAyB;AAElB,MAAM,cAAc,MAAM;AAC/B,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,
|
|
1
|
+
{"version":3,"sources":["../../src/actions/deploy-minor.ts"],"sourcesContent":["import { runSteps } from '../lib'\n\nexport const deployMinor = () => {\n return runSteps('Deploy [Minor]', [\n ['yarn', 'workspaces foreach --all version minor --deferred'],\n ['yarn', 'xy clean'],\n ['yarn', 'xy build'],\n ['yarn', 'xy cycle'],\n ['yarn', 'version apply --all'],\n ['yarn', 'workspaces foreach --all --parallel npm publish'],\n ])\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,iBAAyB;AAElB,MAAM,cAAc,MAAM;AAC/B,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,iDAAiD;AAAA,EAC5D,CAAC;AACH;","names":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/actions/deploy-minor.ts"],"sourcesContent":["import { runSteps } from '../lib'\n\nexport const deployMinor = () => {\n return runSteps('Deploy [Minor]', [\n ['yarn', 'workspaces foreach --all version minor --deferred'],\n ['yarn', 'xy clean'],\n ['yarn', 'xy build'],\n ['yarn', 'xy cycle'],\n ['yarn', 'version apply --all'],\n ['yarn', 'workspaces foreach --all npm publish'],\n ])\n}\n"],"mappings":"AAAA,SAAS,gBAAgB;AAElB,MAAM,cAAc,MAAM;AAC/B,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,
|
|
1
|
+
{"version":3,"sources":["../../src/actions/deploy-minor.ts"],"sourcesContent":["import { runSteps } from '../lib'\n\nexport const deployMinor = () => {\n return runSteps('Deploy [Minor]', [\n ['yarn', 'workspaces foreach --all version minor --deferred'],\n ['yarn', 'xy clean'],\n ['yarn', 'xy build'],\n ['yarn', 'xy cycle'],\n ['yarn', 'version apply --all'],\n ['yarn', 'workspaces foreach --all --parallel npm publish'],\n ])\n}\n"],"mappings":"AAAA,SAAS,gBAAgB;AAElB,MAAM,cAAc,MAAM;AAC/B,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,iDAAiD;AAAA,EAC5D,CAAC;AACH;","names":[]}
|
|
@@ -29,7 +29,7 @@ const deployNext = () => {
|
|
|
29
29
|
["yarn", "xy build"],
|
|
30
30
|
["yarn", "xy cycle"],
|
|
31
31
|
["yarn", "version apply --all --prerelease"],
|
|
32
|
-
["yarn", "workspaces foreach --all npm publish --tag next"]
|
|
32
|
+
["yarn", "workspaces foreach --all --parallel npm publish --tag next"]
|
|
33
33
|
]);
|
|
34
34
|
};
|
|
35
35
|
// Annotate the CommonJS export names for ESM import in node:
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/actions/deploy-next.ts"],"sourcesContent":["import { runSteps } from '../lib'\n\nexport const deployNext = () => {\n return runSteps('Deploy [Next]', [\n ['yarn', 'workspaces foreach --all version minor --deferred'],\n ['yarn', 'xy clean'],\n ['yarn', 'xy build'],\n ['yarn', 'xy cycle'],\n ['yarn', 'version apply --all --prerelease'],\n ['yarn', 'workspaces foreach --all npm publish --tag next'],\n ])\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,iBAAyB;AAElB,MAAM,aAAa,MAAM;AAC9B,aAAO,qBAAS,iBAAiB;AAAA,IAC/B,CAAC,QAAQ,mDAAmD;AAAA,IAC5D,CAAC,QAAQ,UAAU;AAAA,IACnB,CAAC,QAAQ,UAAU;AAAA,IACnB,CAAC,QAAQ,UAAU;AAAA,IACnB,CAAC,QAAQ,kCAAkC;AAAA,IAC3C,CAAC,QAAQ,
|
|
1
|
+
{"version":3,"sources":["../../src/actions/deploy-next.ts"],"sourcesContent":["import { runSteps } from '../lib'\n\nexport const deployNext = () => {\n return runSteps('Deploy [Next]', [\n ['yarn', 'workspaces foreach --all version minor --deferred'],\n ['yarn', 'xy clean'],\n ['yarn', 'xy build'],\n ['yarn', 'xy cycle'],\n ['yarn', 'version apply --all --prerelease'],\n ['yarn', 'workspaces foreach --all --parallel npm publish --tag next'],\n ])\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,iBAAyB;AAElB,MAAM,aAAa,MAAM;AAC9B,aAAO,qBAAS,iBAAiB;AAAA,IAC/B,CAAC,QAAQ,mDAAmD;AAAA,IAC5D,CAAC,QAAQ,UAAU;AAAA,IACnB,CAAC,QAAQ,UAAU;AAAA,IACnB,CAAC,QAAQ,UAAU;AAAA,IACnB,CAAC,QAAQ,kCAAkC;AAAA,IAC3C,CAAC,QAAQ,4DAA4D;AAAA,EACvE,CAAC;AACH;","names":[]}
|
|
@@ -6,7 +6,7 @@ const deployNext = () => {
|
|
|
6
6
|
["yarn", "xy build"],
|
|
7
7
|
["yarn", "xy cycle"],
|
|
8
8
|
["yarn", "version apply --all --prerelease"],
|
|
9
|
-
["yarn", "workspaces foreach --all npm publish --tag next"]
|
|
9
|
+
["yarn", "workspaces foreach --all --parallel npm publish --tag next"]
|
|
10
10
|
]);
|
|
11
11
|
};
|
|
12
12
|
export {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/actions/deploy-next.ts"],"sourcesContent":["import { runSteps } from '../lib'\n\nexport const deployNext = () => {\n return runSteps('Deploy [Next]', [\n ['yarn', 'workspaces foreach --all version minor --deferred'],\n ['yarn', 'xy clean'],\n ['yarn', 'xy build'],\n ['yarn', 'xy cycle'],\n ['yarn', 'version apply --all --prerelease'],\n ['yarn', 'workspaces foreach --all npm publish --tag next'],\n ])\n}\n"],"mappings":"AAAA,SAAS,gBAAgB;AAElB,MAAM,aAAa,MAAM;AAC9B,SAAO,SAAS,iBAAiB;AAAA,IAC/B,CAAC,QAAQ,mDAAmD;AAAA,IAC5D,CAAC,QAAQ,UAAU;AAAA,IACnB,CAAC,QAAQ,UAAU;AAAA,IACnB,CAAC,QAAQ,UAAU;AAAA,IACnB,CAAC,QAAQ,kCAAkC;AAAA,IAC3C,CAAC,QAAQ,
|
|
1
|
+
{"version":3,"sources":["../../src/actions/deploy-next.ts"],"sourcesContent":["import { runSteps } from '../lib'\n\nexport const deployNext = () => {\n return runSteps('Deploy [Next]', [\n ['yarn', 'workspaces foreach --all version minor --deferred'],\n ['yarn', 'xy clean'],\n ['yarn', 'xy build'],\n ['yarn', 'xy cycle'],\n ['yarn', 'version apply --all --prerelease'],\n ['yarn', 'workspaces foreach --all --parallel npm publish --tag next'],\n ])\n}\n"],"mappings":"AAAA,SAAS,gBAAgB;AAElB,MAAM,aAAa,MAAM;AAC9B,SAAO,SAAS,iBAAiB;AAAA,IAC/B,CAAC,QAAQ,mDAAmD;AAAA,IAC5D,CAAC,QAAQ,UAAU;AAAA,IACnB,CAAC,QAAQ,UAAU;AAAA,IACnB,CAAC,QAAQ,UAAU;AAAA,IACnB,CAAC,QAAQ,kCAAkC;AAAA,IAC3C,CAAC,QAAQ,4DAA4D;AAAA,EACvE,CAAC;AACH;","names":[]}
|
package/dist/actions/deploy.js
CHANGED
|
@@ -29,7 +29,7 @@ const deploy = () => {
|
|
|
29
29
|
["yarn", "xy build"],
|
|
30
30
|
["yarn", "xy cycle"],
|
|
31
31
|
["yarn", "version apply --all"],
|
|
32
|
-
["yarn", "workspaces foreach --all npm publish"]
|
|
32
|
+
["yarn", "workspaces foreach --all --parallel npm publish"]
|
|
33
33
|
]);
|
|
34
34
|
};
|
|
35
35
|
// Annotate the CommonJS export names for ESM import in node:
|
|
@@ -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', 'version apply --all'],\n ['yarn', 'workspaces foreach --all 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,
|
|
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 --all --parallel 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,iDAAiD;AAAA,EAC5D,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', 'version apply --all'],\n ['yarn', 'workspaces foreach --all 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,
|
|
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 --all --parallel 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,iDAAiD;AAAA,EAC5D,CAAC;AACH;","names":[]}
|
package/package.json
CHANGED
|
@@ -60,12 +60,13 @@
|
|
|
60
60
|
"@rollup/plugin-commonjs": "^25.0.7",
|
|
61
61
|
"@rollup/plugin-json": "^6.1.0",
|
|
62
62
|
"@rollup/plugin-typescript": "^11.1.6",
|
|
63
|
-
"@types/node": "^20.
|
|
63
|
+
"@types/node": "^20.12.7",
|
|
64
64
|
"@types/yargs": "^17.0.32",
|
|
65
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
66
|
-
"@typescript-eslint/parser": "^7.
|
|
67
|
-
"@xylabs/tsconfig": "~3.
|
|
68
|
-
"
|
|
65
|
+
"@typescript-eslint/eslint-plugin": "^7.7.0",
|
|
66
|
+
"@typescript-eslint/parser": "^7.7.0",
|
|
67
|
+
"@xylabs/tsconfig": "~3.9.1",
|
|
68
|
+
"@xylabs/tsconfig-dom": "~3.9.1",
|
|
69
|
+
"async-mutex": "^0.5.0",
|
|
69
70
|
"chalk": "^4.1.2",
|
|
70
71
|
"cosmiconfig": "^9.0.0",
|
|
71
72
|
"cosmiconfig-typescript-loader": "^5.0.0",
|
|
@@ -74,27 +75,27 @@
|
|
|
74
75
|
"eslint": "^8.57.0",
|
|
75
76
|
"eslint-config-prettier": "^9.1.0",
|
|
76
77
|
"eslint-plugin-prettier": "^5.1.3",
|
|
77
|
-
"eslint-plugin-sonarjs": "^0.
|
|
78
|
-
"glob": "^10.3.
|
|
78
|
+
"eslint-plugin-sonarjs": "^0.25.1",
|
|
79
|
+
"glob": "^10.3.12",
|
|
79
80
|
"jest": "^29.7.0",
|
|
80
81
|
"jest-extended": "^4.0.2",
|
|
81
|
-
"jest-mock-extended": "^3.0.
|
|
82
|
+
"jest-mock-extended": "^3.0.6",
|
|
82
83
|
"jest-sorted": "^1.0.15",
|
|
83
84
|
"jsonc-eslint-parser": "^2.4.0",
|
|
84
85
|
"license-checker": "^25.0.1",
|
|
85
86
|
"lodash": "^4.17.21",
|
|
86
87
|
"node-cmd": "^5.0.0",
|
|
87
|
-
"npm-check-updates": "^16.14.
|
|
88
|
+
"npm-check-updates": "^16.14.18",
|
|
88
89
|
"npm-package-json-lint": "^7.1.0",
|
|
89
90
|
"npm-package-json-lint-config-default": "^6.0.0",
|
|
90
91
|
"parse-git-config": "^3.0.0",
|
|
91
92
|
"prettier": "^3.2.5",
|
|
92
93
|
"publint": "^0.2.7",
|
|
93
|
-
"reflect-metadata": "^0.2.
|
|
94
|
+
"reflect-metadata": "^0.2.2",
|
|
94
95
|
"rimraf": "^4.4.1",
|
|
95
|
-
"rollup": "^4.
|
|
96
|
+
"rollup": "^4.14.3",
|
|
96
97
|
"rollup-plugin-exclude-dependencies-from-bundle": "^1.1.23",
|
|
97
|
-
"rollup-plugin-node-externals": "^7.
|
|
98
|
+
"rollup-plugin-node-externals": "^7.1.1",
|
|
98
99
|
"supertest": "^6.3.4",
|
|
99
100
|
"ts-jest": "^29.1.2",
|
|
100
101
|
"ts-node": "^10.9.2",
|
|
@@ -102,20 +103,20 @@
|
|
|
102
103
|
"tsc-prog": "^2.3.0",
|
|
103
104
|
"tslib": "^2.6.2",
|
|
104
105
|
"tsup": "^8.0.2",
|
|
105
|
-
"typedoc": "^0.25.
|
|
106
|
+
"typedoc": "^0.25.13",
|
|
106
107
|
"types-package-json": "^2.0.39",
|
|
107
108
|
"yargs": "^17.7.2"
|
|
108
109
|
},
|
|
109
110
|
"description": "TypeScript project scripts",
|
|
110
111
|
"devDependencies": {
|
|
111
|
-
"@types/eslint": "^8.56.
|
|
112
|
+
"@types/eslint": "^8.56.9",
|
|
112
113
|
"@types/license-checker": "^25.0.6",
|
|
113
|
-
"@types/lodash": "^4.
|
|
114
|
+
"@types/lodash": "^4.17.0",
|
|
114
115
|
"@types/parse-git-config": "^3.0.4",
|
|
115
|
-
"@xylabs/eslint-config": "~3.
|
|
116
|
-
"@xylabs/tsconfig": "~3.
|
|
116
|
+
"@xylabs/eslint-config": "~3.9.1",
|
|
117
|
+
"@xylabs/tsconfig": "~3.9.1",
|
|
117
118
|
"publint": "^0.2.7",
|
|
118
|
-
"typescript": "^5.4.
|
|
119
|
+
"typescript": "^5.4.5"
|
|
119
120
|
},
|
|
120
121
|
"peerDependencies": {
|
|
121
122
|
"typescript": "^5"
|
|
@@ -169,6 +170,6 @@
|
|
|
169
170
|
"package-clean": "echo Not cleaning..."
|
|
170
171
|
},
|
|
171
172
|
"sideEffects": false,
|
|
172
|
-
"version": "3.
|
|
173
|
+
"version": "3.9.1",
|
|
173
174
|
"type": "commonjs"
|
|
174
175
|
}
|
package/src/actions/clean.ts
CHANGED
|
@@ -7,6 +7,6 @@ export const deployNext = () => {
|
|
|
7
7
|
['yarn', 'xy build'],
|
|
8
8
|
['yarn', 'xy cycle'],
|
|
9
9
|
['yarn', 'version apply --all --prerelease'],
|
|
10
|
-
['yarn', 'workspaces foreach --all npm publish --tag next'],
|
|
10
|
+
['yarn', 'workspaces foreach --all --parallel npm publish --tag next'],
|
|
11
11
|
])
|
|
12
12
|
}
|
package/src/actions/deploy.ts
CHANGED