firefly-compiler 0.5.29 → 0.5.31
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/compiler/Builder.ff
CHANGED
|
@@ -73,9 +73,14 @@ processNodeModules(system: NodeSystem, jsPathFile: Path, packagePath: Path, info
|
|
|
73
73
|
let packageJson = includePath.slash("package.json")
|
|
74
74
|
if(!nodeModules.exists() && packageJson.exists()) {
|
|
75
75
|
system.writeErrorLine("Running npm install --no-package-lock --no-bin-links in " + includePath.absolute())
|
|
76
|
-
system.execute("npm", [
|
|
76
|
+
let result = system.execute("npm", [
|
|
77
77
|
"install", "--no-package-lock", "--no-bin-links"
|
|
78
78
|
], directory = Some(includePath), shell = True)
|
|
79
|
+
if(result.exitCode != 0) {
|
|
80
|
+
system.writeErrorLine("Running npm failed with exit code " + result.exitCode + ":")
|
|
81
|
+
system.writeErrorBuffer(result.standardOut)
|
|
82
|
+
system.writeErrorBuffer(result.standardError)
|
|
83
|
+
}
|
|
79
84
|
}
|
|
80
85
|
}
|
|
81
86
|
}
|
package/core/NodeSystem.ff
CHANGED
|
@@ -206,11 +206,12 @@ internalWindowsWhere(
|
|
|
206
206
|
): Option[String] {
|
|
207
207
|
if(!command.all {c => c.isAsciiLetterOrDigit() || c == '_' || c == '-'}) {None} else:
|
|
208
208
|
let out = system.execute(
|
|
209
|
-
|
|
210
|
-
[
|
|
209
|
+
"where",
|
|
210
|
+
[command],
|
|
211
211
|
directory = directory
|
|
212
212
|
environment = environment
|
|
213
213
|
windowsWhere = False
|
|
214
|
+
shell = True
|
|
214
215
|
)
|
|
215
216
|
out.standardOut.toString().lines().filter {line =>
|
|
216
217
|
out.exitCode == 0 && line.split('\\').last().any {_.contains(".")}
|
|
@@ -172,7 +172,12 @@ const nodeModules_ = ff_core_Path.Path_slash(includePath_, "node_modules");
|
|
|
172
172
|
const packageJson_ = ff_core_Path.Path_slash(includePath_, "package.json");
|
|
173
173
|
if(((!ff_core_Path.Path_exists(nodeModules_, false, false, false)) && ff_core_Path.Path_exists(packageJson_, false, false, false))) {
|
|
174
174
|
ff_core_NodeSystem.NodeSystem_writeErrorLine(system_, ("Running npm install --no-package-lock --no-bin-links in " + ff_core_Path.Path_absolute(includePath_)));
|
|
175
|
-
ff_core_NodeSystem.NodeSystem_execute(system_, "npm", ["install", "--no-package-lock", "--no-bin-links"], ff_core_Buffer.new_(0, false), ff_core_Option.Some(includePath_), ff_core_Option.None(), 16777216, 9, true, true)
|
|
175
|
+
const result_ = ff_core_NodeSystem.NodeSystem_execute(system_, "npm", ["install", "--no-package-lock", "--no-bin-links"], ff_core_Buffer.new_(0, false), ff_core_Option.Some(includePath_), ff_core_Option.None(), 16777216, 9, true, true);
|
|
176
|
+
if((result_.exitCode_ !== 0)) {
|
|
177
|
+
ff_core_NodeSystem.NodeSystem_writeErrorLine(system_, (("Running npm failed with exit code " + result_.exitCode_) + ":"));
|
|
178
|
+
ff_core_NodeSystem.NodeSystem_writeErrorBuffer(system_, result_.standardOut_);
|
|
179
|
+
ff_core_NodeSystem.NodeSystem_writeErrorBuffer(system_, result_.standardError_)
|
|
180
|
+
}
|
|
176
181
|
}
|
|
177
182
|
}
|
|
178
183
|
}
|
|
@@ -386,7 +391,12 @@ const nodeModules_ = (await ff_core_Path.Path_slash$(includePath_, "node_modules
|
|
|
386
391
|
const packageJson_ = (await ff_core_Path.Path_slash$(includePath_, "package.json", $task));
|
|
387
392
|
if(((!(await ff_core_Path.Path_exists$(nodeModules_, false, false, false, $task))) && (await ff_core_Path.Path_exists$(packageJson_, false, false, false, $task)))) {
|
|
388
393
|
(await ff_core_NodeSystem.NodeSystem_writeErrorLine$(system_, ("Running npm install --no-package-lock --no-bin-links in " + (await ff_core_Path.Path_absolute$(includePath_, $task))), $task));
|
|
389
|
-
(await ff_core_NodeSystem.NodeSystem_execute$(system_, "npm", ["install", "--no-package-lock", "--no-bin-links"], ff_core_Buffer.new_(0, false), ff_core_Option.Some(includePath_), ff_core_Option.None(), 16777216, 9, true, true, $task))
|
|
394
|
+
const result_ = (await ff_core_NodeSystem.NodeSystem_execute$(system_, "npm", ["install", "--no-package-lock", "--no-bin-links"], ff_core_Buffer.new_(0, false), ff_core_Option.Some(includePath_), ff_core_Option.None(), 16777216, 9, true, true, $task));
|
|
395
|
+
if((result_.exitCode_ !== 0)) {
|
|
396
|
+
(await ff_core_NodeSystem.NodeSystem_writeErrorLine$(system_, (("Running npm failed with exit code " + result_.exitCode_) + ":"), $task));
|
|
397
|
+
(await ff_core_NodeSystem.NodeSystem_writeErrorBuffer$(system_, result_.standardOut_, $task));
|
|
398
|
+
(await ff_core_NodeSystem.NodeSystem_writeErrorBuffer$(system_, result_.standardError_, $task))
|
|
399
|
+
}
|
|
390
400
|
}
|
|
391
401
|
}
|
|
392
402
|
}
|
|
@@ -135,7 +135,7 @@ return ((ff_core_Char.Char_isAsciiLetterOrDigit(c_) || (c_ === 95)) || (c_ === 4
|
|
|
135
135
|
})))) {
|
|
136
136
|
return ff_core_Option.None()
|
|
137
137
|
} else {
|
|
138
|
-
const out_ = ff_core_NodeSystem.NodeSystem_execute(system_,
|
|
138
|
+
const out_ = ff_core_NodeSystem.NodeSystem_execute(system_, "where", [command_], ff_core_Buffer.new_(0, false), directory_, environment_, 16777216, 9, false, true);
|
|
139
139
|
return ff_core_List.List_first(ff_core_List.List_filter(ff_core_String.String_lines(ff_core_Buffer.Buffer_toString(out_.standardOut_, "utf8")), ((line_) => {
|
|
140
140
|
return ((out_.exitCode_ === 0) && ff_core_Option.Option_any(ff_core_List.List_last(ff_core_String.String_split(line_, 92)), ((_w1) => {
|
|
141
141
|
return ff_core_String.String_contains(_w1, ".")
|
|
@@ -171,7 +171,7 @@ return ((ff_core_Char.Char_isAsciiLetterOrDigit(c_) || (c_ === 95)) || (c_ === 4
|
|
|
171
171
|
})))) {
|
|
172
172
|
return ff_core_Option.None()
|
|
173
173
|
} else {
|
|
174
|
-
const out_ = (await ff_core_NodeSystem.NodeSystem_execute$(system_,
|
|
174
|
+
const out_ = (await ff_core_NodeSystem.NodeSystem_execute$(system_, "where", [command_], ff_core_Buffer.new_(0, false), directory_, environment_, 16777216, 9, false, true, $task));
|
|
175
175
|
return ff_core_List.List_first(ff_core_List.List_filter(ff_core_String.String_lines(ff_core_Buffer.Buffer_toString(out_.standardOut_, "utf8")), ((line_) => {
|
|
176
176
|
return ((out_.exitCode_ === 0) && ff_core_Option.Option_any(ff_core_List.List_last(ff_core_String.String_split(line_, 92)), ((_w1) => {
|
|
177
177
|
return ff_core_String.String_contains(_w1, ".")
|
package/package.json
CHANGED