firefly-compiler 0.6.4 → 0.6.10
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/bin/Release.ff +4 -2
- package/fireflysite/Dockerfile +1 -1
- package/package.json +1 -1
- package/vscode/package.json +1 -1
- package/webserver/WebServer.ff +2 -2
package/bin/Release.ff
CHANGED
|
@@ -23,7 +23,7 @@ release(
|
|
|
23
23
|
runSuccessful(system, "node", ["output/js/ff/compiler/Main.run.mjs", "bootstrap"], system.path(".."))
|
|
24
24
|
let version = bumpMinorVersion(system, system.path("../package.json"))
|
|
25
25
|
bumpMinorVersion(system, system.path("../vscode/package.json"))
|
|
26
|
-
runSuccessful(system, "npm", ["publish"], system.path(".."))
|
|
26
|
+
//runSuccessful(system, "npm", ["publish"], system.path(".."))
|
|
27
27
|
runSuccessful(system, "vsce", ["publish"], system.path("../vscode"))
|
|
28
28
|
releaseFireflyPackage(system, packageStorageKey, "compiler")
|
|
29
29
|
releaseFireflyPackage(system, packageStorageKey, "core")
|
|
@@ -35,7 +35,9 @@ release(
|
|
|
35
35
|
releaseFireflyPackage(system, packageStorageKey, "websocket")
|
|
36
36
|
runSuccessful(system, "git", ["commit", "-a", "-m", "Autorelease_v" + version], system.path(".."))
|
|
37
37
|
runSuccessful(system, "git", ["push"], system.path(".."))
|
|
38
|
-
|
|
38
|
+
system.writeLine("Due to 2FA requirements, you must now manually run:")
|
|
39
|
+
system.writeLine("cd ..; npm publish; npm install -g firefly-compiler")
|
|
40
|
+
//runSuccessful(system, "npm", ["install", "-g", "firefly-compiler"], system.path(".."))
|
|
39
41
|
}
|
|
40
42
|
|
|
41
43
|
releaseFireflyPackage(
|
package/fireflysite/Dockerfile
CHANGED
package/package.json
CHANGED
package/vscode/package.json
CHANGED
package/webserver/WebServer.ff
CHANGED
|
@@ -545,11 +545,11 @@ extend self: WebSocketConnection {
|
|
|
545
545
|
}
|
|
546
546
|
|
|
547
547
|
publishBuffer(topic: String, message: Buffer) {
|
|
548
|
-
internalSend(self) {self.webSocket->publish(topic, message!->buffer, True)
|
|
548
|
+
internalSend(self) {self.webSocket->publish(topic, message!->buffer, True); True}
|
|
549
549
|
}
|
|
550
550
|
|
|
551
551
|
publishText(topic: String, message: String) {
|
|
552
|
-
internalSend(self) {self.webSocket->publish(topic, message!, True)
|
|
552
|
+
internalSend(self) {self.webSocket->publish(topic, message!, True); True}
|
|
553
553
|
}
|
|
554
554
|
|
|
555
555
|
subscribe(topic: String) {
|