@intelligentgraphics/ig.gfx.packager 3.0.15-test.1 → 3.0.15-test.2
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/build/bin.mjs +1 -1
- package/build/{cli-53975bb6.mjs → cli-793fad66.mjs} +7 -7
- package/build/{cli-53975bb6.mjs.map → cli-793fad66.mjs.map} +1 -1
- package/build/{dependencies-5bf7a14a.mjs → dependencies-40b38aa4.mjs} +2 -2
- package/build/{dependencies-5bf7a14a.mjs.map → dependencies-40b38aa4.mjs.map} +1 -1
- package/build/{generateIndex-1756cf75.mjs → generateIndex-1141efed.mjs} +2 -2
- package/build/{generateIndex-1756cf75.mjs.map → generateIndex-1141efed.mjs.map} +1 -1
- package/build/{generateParameterType-aed0e064.mjs → generateParameterType-cc26b523.mjs} +2 -2
- package/build/{generateParameterType-aed0e064.mjs.map → generateParameterType-cc26b523.mjs.map} +1 -1
- package/build/{index-385ad662.mjs → index-2e87d4e6.mjs} +2 -2
- package/build/{index-385ad662.mjs.map → index-2e87d4e6.mjs.map} +1 -1
- package/build/{index-c95766ff.mjs → index-522683c7.mjs} +16 -11
- package/build/index-522683c7.mjs.map +1 -0
- package/build/{postinstall-3966a728.mjs → postinstall-f3a8730b.mjs} +3 -3
- package/build/{postinstall-3966a728.mjs.map → postinstall-f3a8730b.mjs.map} +1 -1
- package/build/{publishNpm-b5546ac9.mjs → publishNpm-b8518590.mjs} +4 -4
- package/build/{publishNpm-b5546ac9.mjs.map → publishNpm-b8518590.mjs.map} +1 -1
- package/build/{versionFile-2dbd099d.mjs → versionFile-7a383d8f.mjs} +2 -2
- package/build/{versionFile-2dbd099d.mjs.map → versionFile-7a383d8f.mjs.map} +1 -1
- package/lib/lib.mjs +11 -6
- package/package.json +1 -1
- package/build/index-c95766ff.mjs.map +0 -1
package/build/bin.mjs
CHANGED
|
@@ -1073,7 +1073,7 @@ yargsInstance.command("build [directories...]", "Builds the specified directorie
|
|
|
1073
1073
|
if (folders.length === 0) {
|
|
1074
1074
|
return console.log("No build targets found. Please check wether a folder with the provided name exists and wether it has _Package.json.");
|
|
1075
1075
|
}
|
|
1076
|
-
const { buildFolders } = await import('./index-
|
|
1076
|
+
const { buildFolders } = await import('./index-2e87d4e6.mjs').then(function (n) { return n.i; });
|
|
1077
1077
|
await buildFolders({
|
|
1078
1078
|
...options,
|
|
1079
1079
|
packages: folders,
|
|
@@ -1187,7 +1187,7 @@ yargsInstance.command("publish [directory]", "Publishes the specified directory"
|
|
|
1187
1187
|
password
|
|
1188
1188
|
};
|
|
1189
1189
|
}
|
|
1190
|
-
const { releaseFolder } = await import('./index-
|
|
1190
|
+
const { releaseFolder } = await import('./index-522683c7.mjs');
|
|
1191
1191
|
const prompter = createDefaultPrompter();
|
|
1192
1192
|
const fullOptions = {
|
|
1193
1193
|
...options,
|
|
@@ -1318,7 +1318,7 @@ yargsInstance.command({
|
|
|
1318
1318
|
handler: async ({ directory , ignore , strictOptional })=>{
|
|
1319
1319
|
const workspace = detectWorkspace(process.cwd());
|
|
1320
1320
|
await preCommandCheck(workspace);
|
|
1321
|
-
const { generateIndex } = await import('./generateIndex-
|
|
1321
|
+
const { generateIndex } = await import('./generateIndex-1141efed.mjs');
|
|
1322
1322
|
const location = detectPackage(workspace, directory);
|
|
1323
1323
|
generateIndex({
|
|
1324
1324
|
location,
|
|
@@ -1333,7 +1333,7 @@ yargsInstance.command({
|
|
|
1333
1333
|
handler: async ({ directory , name })=>{
|
|
1334
1334
|
const workspace = detectWorkspace(process.cwd());
|
|
1335
1335
|
await preCommandCheck(workspace);
|
|
1336
|
-
const { generateParameterType } = await import('./generateParameterType-
|
|
1336
|
+
const { generateParameterType } = await import('./generateParameterType-cc26b523.mjs');
|
|
1337
1337
|
const location = detectPackage(workspace, directory);
|
|
1338
1338
|
generateParameterType({
|
|
1339
1339
|
location,
|
|
@@ -1346,7 +1346,7 @@ yargsInstance.command({
|
|
|
1346
1346
|
command: "postinstall",
|
|
1347
1347
|
builder: (argv)=>argv,
|
|
1348
1348
|
handler: async ()=>{
|
|
1349
|
-
const { executePostInstall } = await import('./postinstall-
|
|
1349
|
+
const { executePostInstall } = await import('./postinstall-f3a8730b.mjs');
|
|
1350
1350
|
executePostInstall(detectWorkspace(process.cwd()));
|
|
1351
1351
|
},
|
|
1352
1352
|
describe: "Runs postinstall tasks"
|
|
@@ -1366,7 +1366,7 @@ yargsInstance.command({
|
|
|
1366
1366
|
}),
|
|
1367
1367
|
handler: async ({ directory , newVersion , dryRun })=>{
|
|
1368
1368
|
const workspace = detectWorkspace(process.cwd());
|
|
1369
|
-
const { publishToNpm } = await import('./publishNpm-
|
|
1369
|
+
const { publishToNpm } = await import('./publishNpm-b8518590.mjs');
|
|
1370
1370
|
await publishToNpm({
|
|
1371
1371
|
workspace,
|
|
1372
1372
|
location: detectPackage(workspace, directory),
|
|
@@ -1383,4 +1383,4 @@ var cli = /*#__PURE__*/Object.freeze({
|
|
|
1383
1383
|
});
|
|
1384
1384
|
|
|
1385
1385
|
export { INDEX_FILE as I, PACKAGE_FILE as P, readPackageCreatorIndex as a, readWorkspaceNpmManifest as b, readPackageAnimationList as c, isErrorEACCES as d, isErrorEPERM as e, getPackageReleasesDirectory as f, getWorkspaceOutputPath as g, getExistingPackages as h, isErrorENOENT as i, closeSession as j, writePackageCreatorIndex as k, getCreatorIndexParameterPrimaryJSType as l, getWorkspaceLibPath as m, readNpmManifest as n, stripUtf8Bom as o, parseCreatorPackageName as p, readPackageNpmManifest as q, readPackageCreatorManifest as r, startSession as s, writePackageNpmManifest as t, uploadPackage as u, iterateWorkspacePackages as v, writePackageCreatorManifest as w, cli as x };
|
|
1386
|
-
//# sourceMappingURL=cli-
|
|
1386
|
+
//# sourceMappingURL=cli-793fad66.mjs.map
|