Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
cf6c5bc
working on modular openscript
levizwannah Nov 24, 2025
997316f
finished testing
levizwannah Nov 25, 2025
7320d68
initiated modular openscript
levizwannah Nov 25, 2025
a1ca4a2
initiated modular openscript
levizwannah Nov 25, 2025
199a453
working on versioning
levizwannah Nov 25, 2025
653ece1
deployed the package
levizwannah Nov 25, 2025
6f54b22
working on openscript docs
levizwannah Nov 25, 2025
a836c39
removed security vulnerablility
levizwannah Nov 25, 2025
eb39f4c
updated the packages
levizwannah Nov 25, 2025
6c64975
working on ojs events
levizwannah Nov 25, 2025
d0709ab
working on ojs events
levizwannah Nov 25, 2025
0836c3c
getting the initial build out
levizwannah Nov 25, 2025
cb07e3e
getting the initial build out
levizwannah Nov 25, 2025
1a574be
gotten the first render successfully
levizwannah Nov 25, 2025
5673590
fixing auto imports
levizwannah Nov 26, 2025
864c345
fixing auto imports
levizwannah Nov 26, 2025
2073e8c
fixed autoimports
levizwannah Nov 26, 2025
52ecd5b
fixing declarations
levizwannah Nov 26, 2025
c2c03df
fixing declarations
levizwannah Nov 26, 2025
c7fad62
working fixing virtual
levizwannah Nov 26, 2025
4a10a85
add recursive scanning to the package
levizwannah Nov 27, 2025
322f2dc
fixing markup engine boot
levizwannah Nov 28, 2025
08a18fc
removed duplicate event registration for components on the broker
levizwannah Dec 2, 2025
b4e01f3
initiated fixing leaks
levizwannah Dec 3, 2025
6d03e20
working on openscriptjs
levizwannah Dec 7, 2025
8f084d5
working on fixing ojs rendering
levizwannah Jan 5, 2026
becc989
fixing memory leaks
levizwannah Jan 14, 2026
65ef9a1
first level of memory leak contained
levizwannah Jan 15, 2026
8788b5e
finished closing markups memory leaks from the framework's perspective
levizwannah Jan 15, 2026
5acd716
fixed memory leaks
levizwannah Jan 15, 2026
205eac3
package updated
levizwannah Jan 15, 2026
0b10d62
fixed minor bugs
levizwannah Jan 15, 2026
672af33
worked on unmount to clean up nodes before removing
levizwannah Jan 20, 2026
f30ddd1
fixed product bug
levizwannah Jan 21, 2026
29904fd
working on openscript documentation
levizwannah Jan 21, 2026
b90836e
fixed methods and events reconciliation
levizwannah Jan 22, 2026
4ae8644
added callback to handle cleanups
levizwannah Jan 23, 2026
6c5d692
updated the settings
levizwannah Jan 23, 2026
1b29ea1
working on documentation
levizwannah Jan 23, 2026
3be51a2
working on ojs documentation
levizwannah Jan 23, 2026
8a69c24
finished the documentation
levizwannah Jan 23, 2026
eea99c7
working on documentation
levizwannah Jan 23, 2026
117a4b3
working on docs
levizwannah Jan 23, 2026
419720b
working on final readme
levizwannah Jan 23, 2026
4820fd5
finished the main readme
levizwannah Jan 23, 2026
9118c20
finished documentation
levizwannah Jan 23, 2026
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
46 changes: 46 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# .gitignore for OpenScript

# Dependencies
node_modules/
package-lock.json
yarn.lock
pnpm-lock.yaml
.npmrc

# Build outputs
dist/
build/output/
*.tsbuildinfo

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Environment files
.env
.env.local
.env.*.local

# Temporary files
*.tmp
*.temp
.cache/

# Test coverage
coverage/
.nyc_output/
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Levi Kamara Zwannah

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading