Skip to content

Commit 690f7d2

Browse files
committed
- update core system
1 parent c71182f commit 690f7d2

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

build/system/system.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1628,15 +1628,15 @@ var system = {
16281628
"_id": "105f219c6813643",
16291629
"component": "RuntimeOSGi",
16301630
"state": "start",
1631-
"action": "function start(id) { \n\tvar system = this.require(id),\n\t channel = this.require('channel');\n\t\n\tsystem.status('starting');\n\tif (system.main) {\n\t system.main();\n\t}\n\tif (system.start) {\n\t system.start();\n\t}\n\tchannel.$systemStarted(id);\n\tsystem.status('active');\n}",
1631+
"action": "function start(id) { \n\tvar system = this.require(id),\n\t channel = this.require('channel');\n\t\n\tif (system.status() === 'resolved') {\n \tsystem.status('starting');\n \tif (system.main) {\n \t system.main();\n \t}\n \tif (system.start) {\n \t system.start();\n \t}\n \tchannel.$systemStarted(id);\n \tsystem.status('active');\n\t}\n}",
16321632
"useCoreAPI": false,
16331633
"core": true
16341634
},
16351635
"1a81a1f00d17269": {
16361636
"_id": "1a81a1f00d17269",
16371637
"component": "RuntimeOSGi",
16381638
"state": "stop",
1639-
"action": "function stop(id) { \n\tvar system = this.require(id),\n\t channel = this.require('channel');\n\t\n\tsystem.status('stopping');\n\tif (system.stop) {\n\t system.stop();\n\t}\n\tchannel.$systemStopped(id);\n\tsystem.status('resolved');\n\tchannel.$systemResolved(id);\n}",
1639+
"action": "function stop(id) { \n\tvar system = this.require(id),\n\t channel = this.require('channel');\n\t \n\tif (system.status() === 'active') {\n \tsystem.status('stopping');\n \tif (system.stop) {\n \t system.stop();\n \t}\n \tchannel.$systemStopped(id);\n \tsystem.status('resolved');\n \tchannel.$systemResolved(id);\n\t}\n}",
16401640
"useCoreAPI": false,
16411641
"core": true
16421642
},

build/sytem-runtime.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1754,15 +1754,15 @@
17541754
"_id": "105f219c6813643",
17551755
"component": "RuntimeOSGi",
17561756
"state": "start",
1757-
"action": "function start(id) { \n\tvar system = this.require(id),\n\t channel = this.require('channel');\n\t\n\tsystem.status('starting');\n\tif (system.main) {\n\t system.main();\n\t}\n\tif (system.start) {\n\t system.start();\n\t}\n\tchannel.$systemStarted(id);\n\tsystem.status('active');\n}",
1757+
"action": "function start(id) { \n\tvar system = this.require(id),\n\t channel = this.require('channel');\n\t\n\tif (system.status() === 'resolved') {\n \tsystem.status('starting');\n \tif (system.main) {\n \t system.main();\n \t}\n \tif (system.start) {\n \t system.start();\n \t}\n \tchannel.$systemStarted(id);\n \tsystem.status('active');\n\t}\n}",
17581758
"useCoreAPI": false,
17591759
"core": true
17601760
},
17611761
"1a81a1f00d17269": {
17621762
"_id": "1a81a1f00d17269",
17631763
"component": "RuntimeOSGi",
17641764
"state": "stop",
1765-
"action": "function stop(id) { \n\tvar system = this.require(id),\n\t channel = this.require('channel');\n\t\n\tsystem.status('stopping');\n\tif (system.stop) {\n\t system.stop();\n\t}\n\tchannel.$systemStopped(id);\n\tsystem.status('resolved');\n\tchannel.$systemResolved(id);\n}",
1765+
"action": "function stop(id) { \n\tvar system = this.require(id),\n\t channel = this.require('channel');\n\t \n\tif (system.status() === 'active') {\n \tsystem.status('stopping');\n \tif (system.stop) {\n \t system.stop();\n \t}\n \tchannel.$systemStopped(id);\n \tsystem.status('resolved');\n \tchannel.$systemResolved(id);\n\t}\n}",
17661766
"useCoreAPI": false,
17671767
"core": true
17681768
},

dist/system-runtime.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/system-runtime.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/system/system-runtime.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)