@intelligentgraphics/ig.gfx.packager 3.0.13 → 3.0.14
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-b2b70181.mjs → cli-43e7eb34.mjs} +7 -7
- package/build/{cli-b2b70181.mjs.map → cli-43e7eb34.mjs.map} +1 -1
- package/build/{dependencies-dc3442f0.mjs → dependencies-fc49f52a.mjs} +2 -2
- package/build/{dependencies-dc3442f0.mjs.map → dependencies-fc49f52a.mjs.map} +1 -1
- package/build/{generateIndex-173ba231.mjs → generateIndex-d7cad329.mjs} +2 -2
- package/build/{generateIndex-173ba231.mjs.map → generateIndex-d7cad329.mjs.map} +1 -1
- package/build/{generateParameterType-bb1df689.mjs → generateParameterType-20b6bfe8.mjs} +2 -2
- package/build/{generateParameterType-bb1df689.mjs.map → generateParameterType-20b6bfe8.mjs.map} +1 -1
- package/build/{index-5985bddb.mjs → index-37e77626.mjs} +5 -5
- package/build/{index-5985bddb.mjs.map → index-37e77626.mjs.map} +1 -1
- package/build/{index-3acafba8.mjs → index-56dfd2b0.mjs} +3 -2
- package/build/index-56dfd2b0.mjs.map +1 -0
- package/build/{postinstall-3681bf5f.mjs → postinstall-f4be09d8.mjs} +3 -3
- package/build/{postinstall-3681bf5f.mjs.map → postinstall-f4be09d8.mjs.map} +1 -1
- package/build/{publishNpm-3fb5df2a.mjs → publishNpm-df5395f7.mjs} +4 -4
- package/build/{publishNpm-3fb5df2a.mjs.map → publishNpm-df5395f7.mjs.map} +1 -1
- package/build/{versionFile-e0d6dba2.mjs → versionFile-c37fea54.mjs} +2 -2
- package/build/{versionFile-e0d6dba2.mjs.map → versionFile-c37fea54.mjs.map} +1 -1
- package/lib/lib.mjs +1 -0
- package/package.json +2 -2
- package/readme.md +4 -0
- package/build/index-3acafba8.mjs.map +0 -1
package/build/bin.mjs
CHANGED
|
@@ -1067,7 +1067,7 @@ yargsInstance.command("build [directories...]", "Builds the specified directorie
|
|
|
1067
1067
|
if (folders.length === 0) {
|
|
1068
1068
|
return console.log("No build targets found. Please check wether a folder with the provided name exists and wether it has _Package.json.");
|
|
1069
1069
|
}
|
|
1070
|
-
const { buildFolders } = await import('./index-
|
|
1070
|
+
const { buildFolders } = await import('./index-56dfd2b0.mjs').then(function (n) { return n.i; });
|
|
1071
1071
|
await buildFolders({
|
|
1072
1072
|
...options,
|
|
1073
1073
|
packages: folders,
|
|
@@ -1181,7 +1181,7 @@ yargsInstance.command("publish [directory]", "Publishes the specified directory"
|
|
|
1181
1181
|
password
|
|
1182
1182
|
};
|
|
1183
1183
|
}
|
|
1184
|
-
const { releaseFolder } = await import('./index-
|
|
1184
|
+
const { releaseFolder } = await import('./index-37e77626.mjs');
|
|
1185
1185
|
const prompter = createDefaultPrompter();
|
|
1186
1186
|
const fullOptions = {
|
|
1187
1187
|
...options,
|
|
@@ -1312,7 +1312,7 @@ yargsInstance.command({
|
|
|
1312
1312
|
handler: async ({ directory , ignore , strictOptional })=>{
|
|
1313
1313
|
const workspace = detectWorkspace(process.cwd());
|
|
1314
1314
|
await preCommandCheck(workspace);
|
|
1315
|
-
const { generateIndex } = await import('./generateIndex-
|
|
1315
|
+
const { generateIndex } = await import('./generateIndex-d7cad329.mjs');
|
|
1316
1316
|
const location = detectPackage(workspace, directory);
|
|
1317
1317
|
generateIndex({
|
|
1318
1318
|
location,
|
|
@@ -1327,7 +1327,7 @@ yargsInstance.command({
|
|
|
1327
1327
|
handler: async ({ directory , name })=>{
|
|
1328
1328
|
const workspace = detectWorkspace(process.cwd());
|
|
1329
1329
|
await preCommandCheck(workspace);
|
|
1330
|
-
const { generateParameterType } = await import('./generateParameterType-
|
|
1330
|
+
const { generateParameterType } = await import('./generateParameterType-20b6bfe8.mjs');
|
|
1331
1331
|
const location = detectPackage(workspace, directory);
|
|
1332
1332
|
generateParameterType({
|
|
1333
1333
|
location,
|
|
@@ -1340,7 +1340,7 @@ yargsInstance.command({
|
|
|
1340
1340
|
command: "postinstall",
|
|
1341
1341
|
builder: (argv)=>argv,
|
|
1342
1342
|
handler: async ()=>{
|
|
1343
|
-
const { executePostInstall } = await import('./postinstall-
|
|
1343
|
+
const { executePostInstall } = await import('./postinstall-f4be09d8.mjs');
|
|
1344
1344
|
executePostInstall(detectWorkspace(process.cwd()));
|
|
1345
1345
|
},
|
|
1346
1346
|
describe: "Runs postinstall tasks"
|
|
@@ -1360,7 +1360,7 @@ yargsInstance.command({
|
|
|
1360
1360
|
}),
|
|
1361
1361
|
handler: async ({ directory , newVersion , dryRun })=>{
|
|
1362
1362
|
const workspace = detectWorkspace(process.cwd());
|
|
1363
|
-
const { publishToNpm } = await import('./publishNpm-
|
|
1363
|
+
const { publishToNpm } = await import('./publishNpm-df5395f7.mjs');
|
|
1364
1364
|
await publishToNpm({
|
|
1365
1365
|
workspace,
|
|
1366
1366
|
location: detectPackage(workspace, directory),
|
|
@@ -1377,4 +1377,4 @@ var cli = /*#__PURE__*/Object.freeze({
|
|
|
1377
1377
|
});
|
|
1378
1378
|
|
|
1379
1379
|
export { INDEX_FILE as I, PACKAGE_FILE as P, readPackageCreatorIndex as a, readWorkspaceNpmManifest as b, readPackageAnimationList as c, getPackageReleasesDirectory as d, getExistingPackages as e, closeSession as f, getWorkspaceOutputPath as g, writePackageCreatorIndex as h, isErrorENOENT as i, getCreatorIndexParameterPrimaryJSType as j, getWorkspaceLibPath as k, readNpmManifest as l, stripUtf8Bom as m, readPackageNpmManifest as n, writePackageNpmManifest as o, parseCreatorPackageName as p, iterateWorkspacePackages as q, readPackageCreatorManifest as r, startSession as s, cli as t, uploadPackage as u, writePackageCreatorManifest as w };
|
|
1380
|
-
//# sourceMappingURL=cli-
|
|
1380
|
+
//# sourceMappingURL=cli-43e7eb34.mjs.map
|