From abdb5bef9ad924ff47ff99e1f6f5505a2694dcdd Mon Sep 17 00:00:00 2001 From: Stacey Van Herk <13419300+svanherk@users.noreply.github.com> Date: Fri, 13 Feb 2026 10:06:26 -0500 Subject: [PATCH] Remove Labs --- src/create.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/create.js b/src/create.js index cdf2c4b..621afd9 100755 --- a/src/create.js +++ b/src/create.js @@ -87,10 +87,10 @@ async function getComponentOptions() { { type: 'select', name: 'org', - message: 'Is this a labs or official component?', + message: 'Which GitHub org will this repo be in?', choices: [ - { title: 'labs', value: 'labs' }, - { title: 'official', value: 'official' } + { title: 'Brightspace', value: 'Brightspace' }, + { title: 'BrightspaceUI', value: 'BrightspaceUI' } ] }, { @@ -173,10 +173,10 @@ async function executeComponentGenerator() { */ options.hyphenatedName = options.hyphenatedName.toLowerCase(); options.className = getClassName(options.hyphenatedName); - options.tagName = `d2l-${options.org === 'labs' ? 'labs-' : ''}${options.hyphenatedName}`; + options.tagName = `d2l-${options.hyphenatedName}`; - options.githubOrg = options.org === 'official' ? 'BrightspaceUI' : 'BrightspaceUILabs'; - options.orgName = options.org === 'official' ? '@brightspace-ui' : '@brightspace-ui-labs'; + options.githubOrg = options.org; + options.orgName = options.org === 'BrightspaceUI' ? '@brightspace-ui' : '@d2l'; options.packageName = `${options.orgName}/${options.hyphenatedName}`; setupDefaultContent(options);