Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ dist/
coverage/
node_modules/
.vscode/
.DS_Store

.eslintcache
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
.husky/
scripts/
test/
docs/

.eslintcache
biome.json
Expand Down
Empty file added docs/.nojekyll
Empty file.
26 changes: 26 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>@ilpt/systemic-ts - A minimal type-safe dependency injection library</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="A minimal type-safe dependency injection library">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//unpkg.com/docsify-themeable/dist/css/theme-simple.css">
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: '@ilpt/systemic-ts',
repo: 'https://github.com/infinitaslearning/systemic-ts',
homepage: 'https://raw.githubusercontent.com/infinitaslearning/systemic-ts/refs/heads/main/README.md',
}
</script>
<!-- Docsify v4 -->
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<!-- To enable syntax highlighting on TypeScript codes: -->
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-typescript.min.js"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"bugs": {
"url": "https://github.com/infinitaslearning/systemic-ts/issues"
},
"homepage": "https://github.com/infinitaslearning/systemic-ts#readme",
"homepage": "https://infinitaslearning.github.io/systemic-ts",
"dependencies": {
"@types/toposort": "^2.0.7",
"debug": "^4.3.5",
Expand Down
Loading