firefly-compiler 0.6.10 → 0.6.11
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 +1 -1
- package/package.json +1 -1
- package/vscode/package.json +1 -1
- package/webserver/WebRoute.ff +1 -1
package/bin/Release.ff
CHANGED
|
@@ -16,7 +16,7 @@ release(
|
|
|
16
16
|
system.writeErrorLine("You need to be in the directory of Release.ff")
|
|
17
17
|
system.exit(1)
|
|
18
18
|
}
|
|
19
|
-
requireNpmLoggedIn(system, system.path(".."))
|
|
19
|
+
//requireNpmLoggedIn(system, system.path(".."))
|
|
20
20
|
requireVsceLoggedIn(system, system.path("../vscode"))
|
|
21
21
|
runSuccessful(system, "node", ["output/js/ff/compiler/Main.run.mjs", "bootstrap"], system.path(".."))
|
|
22
22
|
runSuccessful(system, "node", ["output/js/ff/compiler/Main.run.mjs", "bootstrap"], system.path(".."))
|
package/package.json
CHANGED
package/vscode/package.json
CHANGED
package/webserver/WebRoute.ff
CHANGED
|
@@ -75,7 +75,7 @@ extend self[P1: WebParameter]: WebRoute1[P1] {
|
|
|
75
75
|
extend self[P1: WebParameter, P2: WebParameter]: WebRoute2[P1, P2] {
|
|
76
76
|
toUrl(p1: P1, p2: P2): String {
|
|
77
77
|
mutable result = ""
|
|
78
|
-
mutable parameter =
|
|
78
|
+
mutable parameter = 1
|
|
79
79
|
self.segments.each {r =>
|
|
80
80
|
if(r.startsWith("{")) {
|
|
81
81
|
let p = if(parameter == 1) {
|