Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@lightningjs/blits

Package Overview
Dependencies
Maintainers
0
Versions
89
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lightningjs/blits - npm Package Compare versions

Comparing version 1.10.0 to 1.10.1

docs/router/basics.md

7

CHANGELOG.md
# Changelog
## v1.10.1
_15 nov 2024_
- Upgraded to renderer 2.7.1
- Added documentation on Router
## v1.10.0

@@ -4,0 +11,0 @@

3

docs/_sidebar.md

@@ -27,2 +27,5 @@ - Getting started

- [Layout](/built-in/layout.md)
- Router
- [Basics](/router/basics.md)
- [Hooks](/router/hooks.md)
- Plugins

@@ -29,0 +32,0 @@ - [Text-to-Speech / Announcer](/plugins/text-to-speech-announcer.md)

@@ -112,2 +112,15 @@ [

{
"text": "Router",
"items": [
{
"text": "Basics",
"link": "/router/basics"
},
{
"text": "Hooks",
"link": "/router/hooks"
}
]
},
{
"text": "Plugins",

@@ -114,0 +127,0 @@ "items": [

4

package.json
{
"name": "@lightningjs/blits",
"version": "1.10.0",
"version": "1.10.1",
"description": "Blits: The Lightning 3 App Development Framework",

@@ -53,3 +53,3 @@ "bin": "bin/index.js",

"@lightningjs/msdf-generator": "^1.1.0",
"@lightningjs/renderer": "^2.6.2"
"@lightningjs/renderer": "^2.7.1"
},

@@ -56,0 +56,0 @@ "repository": {

@@ -445,6 +445,14 @@ /*

ctx.renderCode.splice(indexToInjectDestroyCode, 0, ...destroyCode)
let effectKey = `${interpolate(result[2], '')}`
// Get the last property from nested path
if (effectKey && effectKey.includes('.')) {
effectKey = effectKey.match(/[^.]+$/)[0]
}
ctx.renderCode.push(`
effect(() => {
forloop${forStartCounter}(${cast(result[2], ':for')}, elms, created${forStartCounter})
}, '${interpolate(result[2], '')}')
}, '${effectKey}' )
`)

@@ -451,0 +459,0 @@

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc