@moskva/runtime 0.1.5 → 0.1.6
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/changes.md +4 -4
- package/package.json +1 -1
- package/readme.md +4 -1
- package/IRunnable.js +0 -11
package/changes.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
## 28 jan 2026
|
|
2
2
|
|
|
3
|
-
### v0.1.1-0.1.
|
|
3
|
+
### v0.1.1-0.1.6
|
|
4
4
|
|
|
5
|
-
- add splash screen and readme
|
|
6
|
-
-
|
|
7
|
-
- install dependency correctly
|
|
5
|
+
- add splash screen and readme; add homepage.
|
|
6
|
+
- translate apis and make translation main in the readme.
|
|
7
|
+
- install `@javish/lib` dependency correctly.
|
|
8
8
|
|
|
9
9
|
## 27 jan 2026
|
|
10
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moskva/runtime",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "JavaScript-рантайм «Москва» с Java-подобной моделью выполнения: вызываемые Runnable-экземпляры, изоляция памяти и предсказуемая инициализация.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"t": "git tag @javish/base-v$(node -p \"require('./package.json').version\") && git push --tags"
|
package/readme.md
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
# Рантайм Москва
|
|
2
2
|
|
|
3
3
|
<p>
|
|
4
|
-
<img src="https://media-743523.gitlab.io/img/header-npm.jpg" alt="
|
|
4
|
+
<!-- <img src="https://media-743523.gitlab.io/img/header-npm.jpg" alt="РАНТАЙМ МОСКВА NPM ПАКЕТ"> -->
|
|
5
|
+
<a href=https://рантайм.москва>
|
|
6
|
+
<img src="https://медиа.рантайм.москва/img/header_npm.jpg" alt="РАНТАЙМ МОСКВА - RUNTIME MOSKVA">
|
|
7
|
+
</a>
|
|
5
8
|
</p>
|
|
6
9
|
|
|
7
10
|
Этот рантайм предоставляет вызываемые экземпляры функциональных интерфейсов
|
package/IRunnable.js
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export class IRunnable {
|
|
2
|
-
/**
|
|
3
|
-
* Execute an operation
|
|
4
|
-
* @param {!Function} op
|
|
5
|
-
* @param {...object} params
|
|
6
|
-
*/
|
|
7
|
-
run(op, ...params){
|
|
8
|
-
//
|
|
9
|
-
}
|
|
10
|
-
} // in normal js, not possible to invoke the class without new operator,
|
|
11
|
-
// in the advanced JavaScript it'd be possible to invoke interface directly.
|