mirror of
https://github.com/janishutz/fundamentals-of-webengineering.git
synced 2025-11-25 05:44:24 +00:00
Framework refactor complete, still need new name
This commit is contained in:
@@ -3,13 +3,10 @@ import '../css/layout.css';
|
||||
import '@picocss/pico/css/pico.min.css';
|
||||
import {
|
||||
listRef, ref
|
||||
} from './rendering/framework';
|
||||
} from './rendering';
|
||||
import {
|
||||
CSVRecord
|
||||
} from './types';
|
||||
import {
|
||||
RenderTemplate
|
||||
} from './rendering/rendering';
|
||||
import {
|
||||
readCSV
|
||||
} from './csv';
|
||||
|
||||
@@ -23,6 +23,10 @@ import {
|
||||
ref
|
||||
} from './primitives';
|
||||
|
||||
export {
|
||||
listRef,
|
||||
ref
|
||||
};
|
||||
|
||||
export default {
|
||||
ref,
|
||||
|
||||
20
task_2_ts/ts/rendering/package.json
Normal file
20
task_2_ts/ts/rendering/package.json
Normal 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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user