neo.mjs 10.0.0 → 10.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/ServiceWorker.mjs
CHANGED
@@ -1,4 +1,28 @@
|
|
1
1
|
[{
|
2
|
+
"author" : "Tobias Uhlig",
|
3
|
+
"authorImage" : "author_TobiasUhlig.jpeg",
|
4
|
+
"date" : "Jul 24, 2025",
|
5
|
+
"id" : 66,
|
6
|
+
"image" : "FrontendReactivityRevolution.png",
|
7
|
+
"name" : "Frontend Reactivity Revolution: Named vs. Anonymous State",
|
8
|
+
"provider" : "Medium",
|
9
|
+
"publisher" : "ITNEXT",
|
10
|
+
"selectedInto": [],
|
11
|
+
"type" : "Blog Post",
|
12
|
+
"url" : "https://itnext.io/frontend-reactivity-revolution-named-vs-anonymous-state-5428c1aa17b5?source=friends_link&sk=8391d8f6b8e18f68d37ac90129f355ff"
|
13
|
+
}, {
|
14
|
+
"author" : "Tobias Uhlig",
|
15
|
+
"authorImage" : "author_TobiasUhlig.jpeg",
|
16
|
+
"date" : "Jul 24, 2025",
|
17
|
+
"id" : 65,
|
18
|
+
"image" : "a_frontend_love_story.png",
|
19
|
+
"name" : "A Frontend Love Story",
|
20
|
+
"provider" : "Medium",
|
21
|
+
"publisher" : "ITNEXT",
|
22
|
+
"selectedInto": [],
|
23
|
+
"type" : "Blog Post",
|
24
|
+
"url" : "https://itnext.io/a-frontend-love-story-111e6eeea8a6?source=friends_link&sk=da33ff064e874dde2d215570fa580d00"
|
25
|
+
}, {
|
2
26
|
"author" : "Tobias Uhlig",
|
3
27
|
"authorImage" : "author_TobiasUhlig.jpeg",
|
4
28
|
"date" : "Jun 02, 2025",
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name" : "neo.mjs",
|
3
|
-
"version" : "10.0.
|
3
|
+
"version" : "10.0.1",
|
4
4
|
"description" : "Neo.mjs: The multi-threaded UI framework for building ultra-fast, desktop-like web applications with uncompromised responsiveness, inherent security, and a transpilation-free dev mode.",
|
5
5
|
"type" : "module",
|
6
6
|
"repository" : {
|
package/src/DefaultConfig.mjs
CHANGED
@@ -299,12 +299,12 @@ const DefaultConfig = {
|
|
299
299
|
useVdomWorker: true,
|
300
300
|
/**
|
301
301
|
* buildScripts/injectPackageVersion.mjs will update this value
|
302
|
-
* @default '10.0.
|
302
|
+
* @default '10.0.1'
|
303
303
|
* @memberOf! module:Neo
|
304
304
|
* @name config.version
|
305
305
|
* @type String
|
306
306
|
*/
|
307
|
-
version: '10.0.
|
307
|
+
version: '10.0.1'
|
308
308
|
};
|
309
309
|
|
310
310
|
Object.assign(DefaultConfig, {
|