keycloakify 10.0.0-rc.93 → 10.0.0-rc.94

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
@@ -370,10 +370,12 @@ async function appBuild_webpack(params) {
370
370
 
371
371
 
372
372
 
373
+
373
374
  (0,assert.assert)();
374
375
  async function keycloakifyBuild(params) {
375
376
  const { buildForKeycloakMajorVersionNumber, buildContext } = params;
376
377
  const dResult = new Deferred.Deferred();
378
+ console.log(source_default().blue("Running: 'npx keycloakify build'"));
377
379
  const child = external_child_process_.spawn("npx", ["keycloakify", "build"], {
378
380
  cwd: buildContext.projectDirPath,
379
381
  env: Object.assign(Object.assign({}, process.env), { [constants/* buildForKeycloakMajorVersionEnvName */.um]: `${buildForKeycloakMajorVersionNumber}` }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keycloakify",
3
- "version": "10.0.0-rc.93",
3
+ "version": "10.0.0-rc.94",
4
4
  "description": "Create Keycloak themes using React",
5
5
  "repository": {
6
6
  "type": "git",
@@ -3,6 +3,7 @@ import * as child_process from "child_process";
3
3
  import { Deferred } from "evt/tools/Deferred";
4
4
  import { assert } from "tsafe/assert";
5
5
  import type { BuildContext } from "../shared/buildContext";
6
+ import chalk from "chalk";
6
7
 
7
8
  export type BuildContextLike = {
8
9
  projectDirPath: string;
@@ -19,6 +20,8 @@ export async function keycloakifyBuild(params: {
19
20
 
20
21
  const dResult = new Deferred<{ isSuccess: boolean }>();
21
22
 
23
+ console.log(chalk.blue("Running: 'npx keycloakify build'"));
24
+
22
25
  const child = child_process.spawn("npx", ["keycloakify", "build"], {
23
26
  cwd: buildContext.projectDirPath,
24
27
  env: {