This repository was archived by the owner on Jul 3, 2020. It is now read-only.
File tree 2 files changed +10
-15
lines changed
2 files changed +10
-15
lines changed Original file line number Diff line number Diff line change 78
78
if ( parsed . runtime ) {
79
79
if ( typeof parsed . runtime === 'string' ) {
80
80
return parsed . runtime ;
81
- } else if ( typeof parsed . runtime === 'object' ) {
82
- if ( typeof parsed . runtime . main === 'string' ) {
83
- return parsed . runtime . main ;
84
- }
85
- } else {
86
- throwError ( new Error ( `package.json '${ packageJsonFile } ' runtime (or runtime.main) field value is invalid` ) ) ;
87
81
}
82
+ throwError ( new Error ( `package.json '${ packageJsonFile } ' runtime (or runtime.main) field value is invalid` ) ) ;
88
83
}
89
84
90
85
return parsed . main || 'index.js' ;
Original file line number Diff line number Diff line change @@ -72,18 +72,18 @@ class Engines {
72
72
73
73
v8::V8::SetEntropySource (EntropySource);
74
74
75
- InitrdFile pkg_json = GLOBAL_initrd ()->Get (" /package .json" );
76
- if (!pkg_json .IsEmpty ()) {
77
- const char * pkg_json_cont = (const char *)pkg_json .Data ();
75
+ InitrdFile runtime_json = GLOBAL_initrd ()->Get (" /runtime .json" );
76
+ if (!runtime_json .IsEmpty ()) {
77
+ const char * runtime_json_cont = (const char *)runtime_json .Data ();
78
78
79
79
std::string err;
80
- json11::Json root = json11::Json::parse (pkg_json_cont , err);
80
+ json11::Json root = json11::Json::parse (runtime_json_cont , err);
81
81
if (err.empty ()) {
82
- json11::Json runtime = root[" runtime " ];
83
- if (!runtime .is_null () && runtime .is_object ()) {
84
- json11::Json v8flags = runtime[ " v8flags " ];
85
- if (!v8flags .is_null () && v8flags .is_string ()) {
86
- const char * flags_str = v8flags .string_value ().c_str ();
82
+ json11::Json v8 = root[" v8 " ];
83
+ if (!v8 .is_null () && v8 .is_object ()) {
84
+ json11::Json flags = v8[ " flags " ];
85
+ if (!flags .is_null () && flags .is_string ()) {
86
+ const char * flags_str = flags .string_value ().c_str ();
87
87
v8::V8::SetFlagsFromString (flags_str, strlen (flags_str));
88
88
}
89
89
}
You can’t perform that action at this time.
0 commit comments