Currently, I am utilizing gulp to streamline a typescript build system specifically designed for an Angular 2 frontend.
However, I have encountered a problem with my "build" task that has been configured. Below is the exact task in question:
gulp.task('build', ['compile', 'copy:js','copy:html', 'copy:css', 'copy:systemjs']);
The tasks invoked by the "build" task primarily focus on moving files to a dist folder. The compile task plays a crucial role as it utilizes tsc to transpile the typescript to the dist directory.
Upon running the "build" task, the following output error was displayed:
C:\<project directory>\node_modules\.bin\gulp build
gulp[36580]: src\node_contextify.cc:629: Assertion 'args[1]->IsString()' failed.
1: 00007FF6DE1E6AE5
2: 00007FF6DE1C2756
3: 00007FF6DE1C2821
4: 00007FF6DE19A5AA
5: 00007FF6DE7E4002
6: 00007FF6DE7E5158
7: 00007FF6DE7E44BD
8: 00007FF6DE7E43DB
9: 0000017B1E1041C1
Identifying the source of this error and understanding if it pertains to the gulp tasks themselves remain unclear to me.
If you have any insights or suggestions, please feel free to share them! Your assistance is greatly appreciated.