Caleb Evans
04/28/2021, 5:26 PMTypeError: javascript_task.compileJavascript is not a function
error whenever I save a JavaScript file while running the local server (i.e. I can't test new JavaScript changes locally while the server is running). Any further attempts to save a JS file does not trigger the watcher to recompile. Does anyone know how to resolve?Flo Meilan
04/29/2021, 1:17 AMCaleb Evans
04/29/2021, 4:11 PMMark
04/30/2021, 10:39 AM./skinbetter-extensions/gulp/extension-mechanism/local-tasks/javascript.js
exist with the compileJavascript
method defined? Seems like one of those things may be missingCaleb Evans
04/30/2021, 3:18 PMMark
04/30/2021, 3:21 PMMartin
04/30/2021, 3:37 PMCaleb Evans
04/30/2021, 3:37 PMMartin
04/30/2021, 3:38 PMMartin
04/30/2021, 3:38 PMif (typeof define === 'function' && define.amd)
{
// AMD. Register module.
define('PapaParse', [], factory);
}
else if (typeof module === 'object' && module.exports)
{
// Node. Does not work with strict CommonJS, but
// only CommonJS-like environments that support module.exports,
// like Node.
module.exports = factory();
}
else
{
// Browser globals (root is window)
root.Papa = factory();
}
Martin
04/30/2021, 3:38 PMMartin
04/30/2021, 3:39 PMMartin
04/30/2021, 3:39 PM(function(root, factory)
{
//Leave only define to avoid issues with local tools
define('PapaParse', [], factory);
/*
if (typeof define === 'function' && define.amd)
{
// AMD. Register module.
define('PapaParse', [], factory);
}
else if (typeof module === 'object' && module.exports)
{
// Node. Does not work with strict CommonJS, but
// only CommonJS-like environments that support module.exports,
// like Node.
module.exports = factory();
}
else
{
// Browser globals (root is window)
root.Papa = factory();
}*/
}
Martin
04/30/2021, 3:39 PM