Framework refactor complete, still need new name

This commit is contained in:
2025-10-20 12:48:57 +02:00
parent b156ddedb9
commit 3e0f2fb781
3 changed files with 25 additions and 4 deletions

View File

@@ -3,13 +3,10 @@ import '../css/layout.css';
import '@picocss/pico/css/pico.min.css'; import '@picocss/pico/css/pico.min.css';
import { import {
listRef, ref listRef, ref
} from './rendering/framework'; } from './rendering';
import { import {
CSVRecord CSVRecord
} from './types'; } from './types';
import {
RenderTemplate
} from './rendering/rendering';
import { import {
readCSV readCSV
} from './csv'; } from './csv';

View File

@@ -23,6 +23,10 @@ import {
ref ref
} from './primitives'; } from './primitives';
export {
listRef,
ref
};
export default { export default {
ref, ref,

View File

@@ -0,0 +1,20 @@
{
"name": "rendering",
"version": "1.0.0",
"description": "Simple rendering framework for this task",
"homepage": "https://github.com/janishutz/fundamentals-of-webengineering#readme",
"bugs": {
"url": "https://github.com/janishutz/fundamentals-of-webengineering/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/janishutz/fundamentals-of-webengineering.git"
},
"license": "ISC",
"author": "Janis Hutz <development@janishutz.com>",
"type": "module",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
}
}