MCPcopy Index your code
hub / github.com/fontsource/fontsource / buildVariableIconPackage

Function buildVariableIconPackage

packages/cli/src/google/queue.ts:63–76  ·  view source on GitHub ↗
(id: string, opts: BuildOptions)

Source from the content-addressed store, hash-verified

61};
62
63const buildVariableIconPackage = async (id: string, opts: BuildOptions) => {
64 consola.info(
65 `Downloading ${id} ${colors.bold(colors.yellow('[VARIABLE ICON]'))}`,
66 );
67 const optsNew = {
68 ...opts,
69 isVariable: true,
70 dir: path.join(opts.dir, 'variable-icons', id),
71 };
72 await build(id, optsNew);
73 consola.success(
74 `Finished processing ${id} ${colors.bold(colors.yellow('[VARIABLE ICON]'))}`,
75 );
76};
77
78const testIds = [
79 'akshar',

Callers 1

processGoogleFunction · 0.85

Calls 2

buildFunction · 0.90
infoMethod · 0.65

Tested by

no test coverage detected