File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11const fs = require ( "fs" ) ;
22const Trace = require ( "chrome-trace-event" ) . Tracer ;
3+ const validateOptions = require ( "schema-utils" ) ;
4+ const schema = require ( "../../schemas/plugins/debug/ProfilingPlugin.json" ) ;
35let inspector = undefined ;
46
57try {
@@ -131,8 +133,6 @@ function createTrace(outPath) {
131133}
132134
133135const pluginName = "ProfilingPlugin" ;
134- const validateOptions = require ( "schema-utils" ) ;
135- const schema = require ( "../../schemas/plugins/debug/ProfilingPlugin.json" ) ;
136136
137137class ProfilingPlugin {
138138 constructor ( opts ) {
Original file line number Diff line number Diff line change 66 "outPath" : {
77 "description" : " Path to the output file e.g. `profiling/events.json`. Defaults to `events.json`." ,
88 "type" : " string" ,
9- "absolutePath" : true ,
9+ "absolutePath" : false ,
1010 "minLength" : 4
1111 }
1212 }
You can’t perform that action at this time.
0 commit comments