@intelligentgraphics/ig.gfx.packager 3.0.11 → 3.0.12
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-381989cc.mjs → cli-2ce0c074.mjs} +7 -7
- package/build/{cli-381989cc.mjs.map → cli-2ce0c074.mjs.map} +1 -1
- package/build/{dependencies-1f665204.mjs → dependencies-a8a9faba.mjs} +2 -2
- package/build/{dependencies-1f665204.mjs.map → dependencies-a8a9faba.mjs.map} +1 -1
- package/build/{generateIndex-074f4aa1.mjs → generateIndex-d7e7000f.mjs} +47 -9
- package/build/generateIndex-d7e7000f.mjs.map +1 -0
- package/build/{generateParameterType-4c9e95a5.mjs → generateParameterType-24d37c5f.mjs} +2 -2
- package/build/{generateParameterType-4c9e95a5.mjs.map → generateParameterType-24d37c5f.mjs.map} +1 -1
- package/build/{index-cc42a478.mjs → index-2cdef238.mjs} +2 -2
- package/build/{index-cc42a478.mjs.map → index-2cdef238.mjs.map} +1 -1
- package/build/{index-06ac2c4c.mjs → index-2fa7b516.mjs} +7 -7
- package/build/index-2fa7b516.mjs.map +1 -0
- package/build/{postinstall-c38d9b55.mjs → postinstall-0ffa4499.mjs} +3 -3
- package/build/{postinstall-c38d9b55.mjs.map → postinstall-0ffa4499.mjs.map} +1 -1
- package/build/{publishNpm-8ec1b871.mjs → publishNpm-2b3321c5.mjs} +4 -4
- package/build/{publishNpm-8ec1b871.mjs.map → publishNpm-2b3321c5.mjs.map} +1 -1
- package/build/{versionFile-aa8b6b7a.mjs → versionFile-e8fdf88c.mjs} +2 -2
- package/build/{versionFile-aa8b6b7a.mjs.map → versionFile-e8fdf88c.mjs.map} +1 -1
- package/lib/lib.mjs +281 -3
- package/package.json +3 -3
- package/readme.md +6 -0
- package/build/generateIndex-074f4aa1.mjs.map +0 -1
- package/build/index-06ac2c4c.mjs.map +0 -1
package/build/bin.mjs
CHANGED
|
@@ -1076,7 +1076,7 @@ yargsInstance.command("build [directories...]", "Builds the specified directorie
|
|
|
1076
1076
|
if (folders.length === 0) {
|
|
1077
1077
|
return console.log("No build targets found. Please check wether a folder with the provided name exists and wether it has _Package.json.");
|
|
1078
1078
|
}
|
|
1079
|
-
const { buildFolders } = await import('./index-
|
|
1079
|
+
const { buildFolders } = await import('./index-2cdef238.mjs').then(function (n) { return n.i; });
|
|
1080
1080
|
await buildFolders({
|
|
1081
1081
|
...options,
|
|
1082
1082
|
packages: folders,
|
|
@@ -1190,7 +1190,7 @@ yargsInstance.command("publish [directory]", "Publishes the specified directory"
|
|
|
1190
1190
|
password
|
|
1191
1191
|
};
|
|
1192
1192
|
}
|
|
1193
|
-
const { releaseFolder } = await import('./index-
|
|
1193
|
+
const { releaseFolder } = await import('./index-2fa7b516.mjs');
|
|
1194
1194
|
const prompter = createDefaultPrompter();
|
|
1195
1195
|
const fullOptions = {
|
|
1196
1196
|
...options,
|
|
@@ -1321,7 +1321,7 @@ yargsInstance.command({
|
|
|
1321
1321
|
handler: async ({ directory , ignore , strictOptional })=>{
|
|
1322
1322
|
const workspace = detectWorkspace(process.cwd());
|
|
1323
1323
|
await preCommandCheck(workspace);
|
|
1324
|
-
const { generateIndex } = await import('./generateIndex-
|
|
1324
|
+
const { generateIndex } = await import('./generateIndex-d7e7000f.mjs');
|
|
1325
1325
|
const location = detectPackage(workspace, directory);
|
|
1326
1326
|
generateIndex({
|
|
1327
1327
|
location,
|
|
@@ -1336,7 +1336,7 @@ yargsInstance.command({
|
|
|
1336
1336
|
handler: async ({ directory , name })=>{
|
|
1337
1337
|
const workspace = detectWorkspace(process.cwd());
|
|
1338
1338
|
await preCommandCheck(workspace);
|
|
1339
|
-
const { generateParameterType } = await import('./generateParameterType-
|
|
1339
|
+
const { generateParameterType } = await import('./generateParameterType-24d37c5f.mjs');
|
|
1340
1340
|
const location = detectPackage(workspace, directory);
|
|
1341
1341
|
generateParameterType({
|
|
1342
1342
|
location,
|
|
@@ -1349,7 +1349,7 @@ yargsInstance.command({
|
|
|
1349
1349
|
command: "postinstall",
|
|
1350
1350
|
builder: (argv)=>argv,
|
|
1351
1351
|
handler: async ()=>{
|
|
1352
|
-
const { executePostInstall } = await import('./postinstall-
|
|
1352
|
+
const { executePostInstall } = await import('./postinstall-0ffa4499.mjs');
|
|
1353
1353
|
executePostInstall(detectWorkspace(process.cwd()));
|
|
1354
1354
|
},
|
|
1355
1355
|
describe: "Runs postinstall tasks"
|
|
@@ -1369,7 +1369,7 @@ yargsInstance.command({
|
|
|
1369
1369
|
}),
|
|
1370
1370
|
handler: async ({ directory , newVersion , dryRun })=>{
|
|
1371
1371
|
const workspace = detectWorkspace(process.cwd());
|
|
1372
|
-
const { publishToNpm } = await import('./publishNpm-
|
|
1372
|
+
const { publishToNpm } = await import('./publishNpm-2b3321c5.mjs');
|
|
1373
1373
|
await publishToNpm({
|
|
1374
1374
|
workspace,
|
|
1375
1375
|
location: detectPackage(workspace, directory),
|
|
@@ -1386,4 +1386,4 @@ var cli = /*#__PURE__*/Object.freeze({
|
|
|
1386
1386
|
});
|
|
1387
1387
|
|
|
1388
1388
|
export { INDEX_FILE as I, PACKAGE_FILE as P, readPackageAnimationList as a, readPackageCreatorIndex as b, readWorkspaceNpmManifest as c, getPackageReleasesDirectory as d, getExistingPackages as e, closeSession as f, getWorkspaceOutputPath as g, getPackageTypescriptFiles as h, isErrorENOENT as i, writePackageCreatorIndex as j, getCreatorIndexParameterPrimaryJSType as k, getWorkspaceLibPath as l, readNpmManifest as m, stripUtf8Bom as n, readPackageNpmManifest as o, parseCreatorPackageName as p, writePackageNpmManifest as q, readPackageCreatorManifest as r, startSession as s, iterateWorkspacePackages as t, uploadPackage as u, cli as v, writePackageCreatorManifest as w };
|
|
1389
|
-
//# sourceMappingURL=cli-
|
|
1389
|
+
//# sourceMappingURL=cli-2ce0c074.mjs.map
|