create-gluon


create-gluon / packages/create-gluon/src / CREATE_GLUON_VERSION

Variable: CREATE_GLUON_VERSION

const CREATE_GLUON_VERSION: "1.10.0" = '1.10.0'

Example

Print or compare the version of the scaffolder responsible for a generated starter:

ts
import {
  CREATE_GLUON_VERSION,
  ScaffoldError,
  helpText,
  normalizeFeatures,
  parseCliArguments,
  scaffoldProject,
  type CliPrompt,
  type GluonFeatures,
  type ParsedCliArguments,
  type ScaffoldErrorCode,
  type ScaffoldOptions,
  type ScaffoldResult,
} from 'create-gluon';

const parsed: ParsedCliArguments = parseCliArguments(['my-shop', '--ssr', '--ui', '--testing', '--yes']);
const features: GluonFeatures = normalizeFeatures(parsed);
const options = {
  directory: parsed.directory!,
  name: '@example/my-shop',
  cwd: '/tmp',
  force: true,
  ...features,
} satisfies ScaffoldOptions;
const prompt: CliPrompt = { question: async () => 'yes', close: () => undefined };
console.log(prompt, CREATE_GLUON_VERSION, helpText.split('\n')[0]);

try {
  const result: ScaffoldResult = await scaffoldProject(options);
  console.log(result.directory, result.features, result.files);
} catch (error) {
  if (error instanceof ScaffoldError) {
    const code: ScaffoldErrorCode = error.code;
    console.error(code, error.message);
  } else throw error;
}