@intelligentgraphics/ig.gfx.packager 3.0.15-test.3 → 3.0.15
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-98d3f2ca.mjs → cli-c15a4b62.mjs} +7 -7
- package/build/{cli-98d3f2ca.mjs.map → cli-c15a4b62.mjs.map} +1 -1
- package/build/{dependencies-77f20953.mjs → dependencies-72ece8a2.mjs} +2 -2
- package/build/{dependencies-77f20953.mjs.map → dependencies-72ece8a2.mjs.map} +1 -1
- package/build/{generateIndex-40150d38.mjs → generateIndex-631aa251.mjs} +2 -2
- package/build/{generateIndex-40150d38.mjs.map → generateIndex-631aa251.mjs.map} +1 -1
- package/build/{generateParameterType-0019e4e3.mjs → generateParameterType-b0ac6a34.mjs} +2 -2
- package/build/{generateParameterType-0019e4e3.mjs.map → generateParameterType-b0ac6a34.mjs.map} +1 -1
- package/build/{index-489c6fd3.mjs → index-4dbcbb2b.mjs} +2 -2
- package/build/{index-489c6fd3.mjs.map → index-4dbcbb2b.mjs.map} +1 -1
- package/build/{index-78058bc6.mjs → index-c76f14c3.mjs} +14 -21
- package/build/index-c76f14c3.mjs.map +1 -0
- package/build/{postinstall-7a2744e1.mjs → postinstall-19d8ddac.mjs} +3 -3
- package/build/{postinstall-7a2744e1.mjs.map → postinstall-19d8ddac.mjs.map} +1 -1
- package/build/{publishNpm-f50e8981.mjs → publishNpm-281aa4f2.mjs} +4 -4
- package/build/{publishNpm-f50e8981.mjs.map → publishNpm-281aa4f2.mjs.map} +1 -1
- package/build/{versionFile-41c93b67.mjs → versionFile-5a8916bd.mjs} +2 -2
- package/build/{versionFile-41c93b67.mjs.map → versionFile-5a8916bd.mjs.map} +1 -1
- package/lib/lib.mjs +9 -16
- package/package.json +2 -2
- package/readme.md +4 -0
- package/build/index-78058bc6.mjs.map +0 -1
package/build/bin.mjs
CHANGED
|
@@ -1069,7 +1069,7 @@ yargsInstance.command("build [directories...]", "Builds the specified directorie
|
|
|
1069
1069
|
if (folders.length === 0) {
|
|
1070
1070
|
return console.log("No build targets found. Please check wether a folder with the provided name exists and wether it has _Package.json.");
|
|
1071
1071
|
}
|
|
1072
|
-
const { buildFolders } = await import('./index-
|
|
1072
|
+
const { buildFolders } = await import('./index-4dbcbb2b.mjs').then(function (n) { return n.i; });
|
|
1073
1073
|
await buildFolders({
|
|
1074
1074
|
...options,
|
|
1075
1075
|
packages: folders,
|
|
@@ -1183,7 +1183,7 @@ yargsInstance.command("publish [directory]", "Publishes the specified directory"
|
|
|
1183
1183
|
password
|
|
1184
1184
|
};
|
|
1185
1185
|
}
|
|
1186
|
-
const { releaseFolder } = await import('./index-
|
|
1186
|
+
const { releaseFolder } = await import('./index-c76f14c3.mjs');
|
|
1187
1187
|
const prompter = createDefaultPrompter();
|
|
1188
1188
|
const fullOptions = {
|
|
1189
1189
|
...options,
|
|
@@ -1314,7 +1314,7 @@ yargsInstance.command({
|
|
|
1314
1314
|
handler: async ({ directory , ignore , strictOptional })=>{
|
|
1315
1315
|
const workspace = detectWorkspace(process.cwd());
|
|
1316
1316
|
await preCommandCheck(workspace);
|
|
1317
|
-
const { generateIndex } = await import('./generateIndex-
|
|
1317
|
+
const { generateIndex } = await import('./generateIndex-631aa251.mjs');
|
|
1318
1318
|
const location = detectPackage(workspace, directory);
|
|
1319
1319
|
generateIndex({
|
|
1320
1320
|
location,
|
|
@@ -1329,7 +1329,7 @@ yargsInstance.command({
|
|
|
1329
1329
|
handler: async ({ directory , name })=>{
|
|
1330
1330
|
const workspace = detectWorkspace(process.cwd());
|
|
1331
1331
|
await preCommandCheck(workspace);
|
|
1332
|
-
const { generateParameterType } = await import('./generateParameterType-
|
|
1332
|
+
const { generateParameterType } = await import('./generateParameterType-b0ac6a34.mjs');
|
|
1333
1333
|
const location = detectPackage(workspace, directory);
|
|
1334
1334
|
generateParameterType({
|
|
1335
1335
|
location,
|
|
@@ -1342,7 +1342,7 @@ yargsInstance.command({
|
|
|
1342
1342
|
command: "postinstall",
|
|
1343
1343
|
builder: (argv)=>argv,
|
|
1344
1344
|
handler: async ()=>{
|
|
1345
|
-
const { executePostInstall } = await import('./postinstall-
|
|
1345
|
+
const { executePostInstall } = await import('./postinstall-19d8ddac.mjs');
|
|
1346
1346
|
executePostInstall(detectWorkspace(process.cwd()));
|
|
1347
1347
|
},
|
|
1348
1348
|
describe: "Runs postinstall tasks"
|
|
@@ -1362,7 +1362,7 @@ yargsInstance.command({
|
|
|
1362
1362
|
}),
|
|
1363
1363
|
handler: async ({ directory , newVersion , dryRun })=>{
|
|
1364
1364
|
const workspace = detectWorkspace(process.cwd());
|
|
1365
|
-
const { publishToNpm } = await import('./publishNpm-
|
|
1365
|
+
const { publishToNpm } = await import('./publishNpm-281aa4f2.mjs');
|
|
1366
1366
|
await publishToNpm({
|
|
1367
1367
|
workspace,
|
|
1368
1368
|
location: detectPackage(workspace, directory),
|
|
@@ -1379,4 +1379,4 @@ var cli = /*#__PURE__*/Object.freeze({
|
|
|
1379
1379
|
});
|
|
1380
1380
|
|
|
1381
1381
|
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, uploadPackageFromStream as u, iterateWorkspacePackages as v, writePackageCreatorManifest as w, cli as x };
|
|
1382
|
-
//# sourceMappingURL=cli-
|
|
1382
|
+
//# sourceMappingURL=cli-c15a4b62.mjs.map
|