diff --git a/task_2_ts/ts/rendering/index.ts b/task_2_ts/ts/glue/index.ts similarity index 100% rename from task_2_ts/ts/rendering/index.ts rename to task_2_ts/ts/glue/index.ts diff --git a/task_2_ts/ts/rendering/list-renderer.ts b/task_2_ts/ts/glue/list-renderer.ts similarity index 100% rename from task_2_ts/ts/rendering/list-renderer.ts rename to task_2_ts/ts/glue/list-renderer.ts diff --git a/task_2_ts/ts/rendering/list.ts b/task_2_ts/ts/glue/list.ts similarity index 100% rename from task_2_ts/ts/rendering/list.ts rename to task_2_ts/ts/glue/list.ts diff --git a/task_2_ts/ts/rendering/package.json b/task_2_ts/ts/glue/package.json similarity index 82% rename from task_2_ts/ts/rendering/package.json rename to task_2_ts/ts/glue/package.json index 5dc0279..264454f 100644 --- a/task_2_ts/ts/rendering/package.json +++ b/task_2_ts/ts/glue/package.json @@ -1,7 +1,7 @@ { - "name": "rendering", + "name": "gluejs", "version": "1.0.0", - "description": "Simple rendering framework for this task", + "description": "It's not Vue, it's Glue! Because that's what's holding it together.", "homepage": "https://github.com/janishutz/fundamentals-of-webengineering#readme", "bugs": { "url": "https://github.com/janishutz/fundamentals-of-webengineering/issues" diff --git a/task_2_ts/ts/rendering/primitives.ts b/task_2_ts/ts/glue/primitives.ts similarity index 100% rename from task_2_ts/ts/rendering/primitives.ts rename to task_2_ts/ts/glue/primitives.ts diff --git a/task_2_ts/ts/rendering/rendering.d.ts b/task_2_ts/ts/glue/rendering.d.ts similarity index 100% rename from task_2_ts/ts/rendering/rendering.d.ts rename to task_2_ts/ts/glue/rendering.d.ts diff --git a/task_2_ts/ts/main.ts b/task_2_ts/ts/main.ts index 7370b55..e75c203 100644 --- a/task_2_ts/ts/main.ts +++ b/task_2_ts/ts/main.ts @@ -8,7 +8,7 @@ import { } from './util'; import { listRef, ref -} from './rendering'; +} from './glue'; import { CSVRecord } from './types';