Cory
07/28/2020, 8:46 PM270 util.each(options.files_paths, function(file_path)
271 {
272 var file = file_module.load({id: file_path});
273 var original_file = file_module.create({
274 name : file.name.replace(options.output_prefix, ''),
275 fileType: file_module.Type.STYLESHEET,
276 contents: file.getContents()
277 });
278 original_file.encoding = file.Encoding.UTF_8;
279 original_file.folder = file.folder;
280 original_file.save();
281 });
I believe the 'file' object that is referenced should instead be 'file_module', as it would contain the 'Encoding' property. I've already submitted a case for this, but was curious if anyone else has come across the error. Thank you.Flo Meilan
07/29/2020, 2:05 PMCory
07/29/2020, 2:08 PMFlo Meilan
07/29/2020, 2:12 PMFlo Meilan
07/29/2020, 2:13 PM