keycloakify 10.0.0-rc.62 → 10.0.0-rc.63

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/bin/526.index.js CHANGED
@@ -414,7 +414,7 @@ async function appBuild(params) {
414
414
  }
415
415
  })();
416
416
  const dResult = new Deferred.Deferred();
417
- const child = external_child_process_.spawn(command, args, { cwd });
417
+ const child = external_child_process_.spawn(command, args, { cwd, shell: true });
418
418
  child.stdout.on("data", data => {
419
419
  if (data.toString("utf8").includes("gzip:")) {
420
420
  return;
@@ -438,7 +438,8 @@ async function keycloakifyBuild(params) {
438
438
  const dResult = new Deferred.Deferred();
439
439
  const child = external_child_process_.spawn("npx", ["keycloakify", "build"], {
440
440
  cwd: buildContext.projectDirPath,
441
- env: Object.assign(Object.assign({}, process.env), { [constants/* onlyBuildJarFileBasenameEnvName */.Dv]: onlyBuildJarFileBasename })
441
+ env: Object.assign(Object.assign({}, process.env), { [constants/* onlyBuildJarFileBasenameEnvName */.Dv]: onlyBuildJarFileBasename }),
442
+ shell: true
442
443
  });
443
444
  child.stdout.on("data", data => process.stdout.write(data));
444
445
  child.stderr.on("data", data => process.stderr.write(data));
@@ -727,7 +728,8 @@ async function command(params) {
727
728
  ...(realmJsonFilePath === undefined ? [] : ["--import-realm"])
728
729
  ],
729
730
  {
730
- cwd: buildContext.keycloakifyBuildDirPath
731
+ cwd: buildContext.keycloakifyBuildDirPath,
732
+ shell: true
731
733
  }
732
734
  ];
733
735
  const child = external_child_process_.spawn(...spawnArgs);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keycloakify",
3
- "version": "10.0.0-rc.62",
3
+ "version": "10.0.0-rc.63",
4
4
  "description": "Create Keycloak themes using React",
5
5
  "repository": {
6
6
  "type": "git",
@@ -109,7 +109,7 @@ export async function appBuild(params: {
109
109
 
110
110
  const dResult = new Deferred<{ isSuccess: boolean }>();
111
111
 
112
- const child = child_process.spawn(command, args, { cwd });
112
+ const child = child_process.spawn(command, args, { cwd, shell: true });
113
113
 
114
114
  child.stdout.on("data", data => {
115
115
  if (data.toString("utf8").includes("gzip:")) {
@@ -26,7 +26,8 @@ export async function keycloakifyBuild(params: {
26
26
  env: {
27
27
  ...process.env,
28
28
  [onlyBuildJarFileBasenameEnvName]: onlyBuildJarFileBasename
29
- }
29
+ },
30
+ shell: true
30
31
  });
31
32
 
32
33
  child.stdout.on("data", data => process.stdout.write(data));
@@ -421,7 +421,8 @@ export async function command(params: { cliCommandOptions: CliCommandOptions })
421
421
  ...(realmJsonFilePath === undefined ? [] : ["--import-realm"])
422
422
  ],
423
423
  {
424
- cwd: buildContext.keycloakifyBuildDirPath
424
+ cwd: buildContext.keycloakifyBuildDirPath,
425
+ shell: true
425
426
  }
426
427
  ] as const;
427
428