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 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
- runSuccessful(system, "npm", ["install", "-g", "firefly-compiler"], system.path(".."))
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(
@@ -1,4 +1,4 @@
1
- FROM node:24-slim AS system-stage
1
+ FROM node:24-trixie-slim AS system-stage
2
2
  RUN apt update && apt install dumb-init && rm -rf /var/lib/apt/lists/* && rm -rf /var/cache/apt/archives/*
3
3
  USER node
4
4
  RUN mkdir /home/node/app
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "description": "Firefly compiler",
5
5
  "author": "Firefly team",
6
6
  "license": "MIT",
7
- "version": "0.6.4",
7
+ "version": "0.6.10",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "https://github.com/Ahnfelt/firefly-boot"
@@ -4,7 +4,7 @@
4
4
  "description": "Firefly language support",
5
5
  "author": "Firefly team",
6
6
  "license": "MIT",
7
- "version": "0.6.4",
7
+ "version": "0.6.10",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "https://github.com/Ahnfelt/firefly-boot"
@@ -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).truthy()}
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).truthy()}
552
+ internalSend(self) {self.webSocket->publish(topic, message!, True); True}
553
553
  }
554
554
 
555
555
  subscribe(topic: String) {