@@ -19,9 +19,6 @@ import {
19
19
writeJSON ,
20
20
} from "helpers/files" ;
21
21
import astroTemplateExperimental from "templates-experimental/astro/c3" ;
22
- import assetsOnlyTemplateExperimental from "templates-experimental/hello-world-assets-only/c3" ;
23
- import helloWorldWithDurableObjectAssetsTemplateExperimental from "templates-experimental/hello-world-durable-object-with-assets/c3" ;
24
- import helloWorldWithAssetsTemplateExperimental from "templates-experimental/hello-world-with-assets/c3" ;
25
22
import honoTemplateExperimental from "templates-experimental/hono/c3" ;
26
23
import nextTemplateExperimental from "templates-experimental/next/c3" ;
27
24
import qwikTemplateExperimental from "templates-experimental/qwik/c3" ;
@@ -34,8 +31,11 @@ import astroTemplate from "templates/astro/c3";
34
31
import commonTemplate from "templates/common/c3" ;
35
32
import docusaurusTemplate from "templates/docusaurus/c3" ;
36
33
import gatsbyTemplate from "templates/gatsby/c3" ;
34
+ import assetsOnlyTemplate from "templates/hello-world-assets-only/c3" ;
35
+ import helloWorldWithDurableObjectAssetsTemplate from "templates/hello-world-durable-object-with-assets/c3" ;
37
36
import helloWorldDurableObjectTemplate from "templates/hello-world-durable-object/c3" ;
38
- import helloWorldTemplate from "templates/hello-world/c3" ;
37
+ import helloWorldWithAssetsTemplate from "templates/hello-world-with-assets/c3" ;
38
+ import helloWorldWorkerTemplate from "templates/hello-world/c3" ;
39
39
import honoTemplate from "templates/hono/c3" ;
40
40
import nextTemplate from "templates/next/c3" ;
41
41
import nuxtTemplate from "templates/nuxt/c3" ;
@@ -206,19 +206,18 @@ export function getFrameworkMap({ experimental = false }): TemplateMap {
206
206
207
207
export function getTemplateMap ( { experimental = false } ) {
208
208
if ( experimental ) {
209
- return {
210
- "hello-world-assets-only" : assetsOnlyTemplateExperimental ,
211
- "hello-world-with-assets" : helloWorldWithAssetsTemplateExperimental ,
212
- "hello-world-durable-object-with-assets" :
213
- helloWorldWithDurableObjectAssetsTemplateExperimental ,
214
- } as Record < string , TemplateConfig > ;
209
+ return { } as Record < string , TemplateConfig > ;
215
210
} else {
216
211
return {
217
- "hello-world" : helloWorldTemplate ,
212
+ "hello-world" : helloWorldWorkerTemplate ,
213
+ "hello-world-assets-only" : assetsOnlyTemplate ,
214
+ "hello-world-with-assets" : helloWorldWithAssetsTemplate ,
215
+ "hello-world-durable-object" : helloWorldDurableObjectTemplate ,
216
+ "hello-world-durable-object-with-assets" :
217
+ helloWorldWithDurableObjectAssetsTemplate ,
218
218
common : commonTemplate ,
219
219
scheduled : scheduledTemplate ,
220
220
queues : queuesTemplate ,
221
- "hello-world-durable-object" : helloWorldDurableObjectTemplate ,
222
221
openapi : openapiTemplate ,
223
222
"pre-existing" : preExistingTemplate ,
224
223
} as Record < string , TemplateConfig > ;
@@ -366,9 +365,10 @@ export const createContext = async (
366
365
367
366
const categoryOptions = [
368
367
{
369
- label : "Hello World example " ,
368
+ label : "Hello World Starter " ,
370
369
value : "hello-world" ,
371
- description : "Select from barebones examples to get started with Workers" ,
370
+ description :
371
+ "Select from basic scaffolds to get started with Workers, Assets and Durable Objects" ,
372
372
} ,
373
373
{
374
374
label : "Framework Starter" ,
0 commit comments