Milos Colakovic

Results 6 comments of Milos Colakovic

I had to do with a quick&dirty symlink since I'm using gulp 4 (which Semantic-UI also has a problem with). I don't think we should have to include so much...

@cmnstmntmn I use this gulp task as a workaround: ``` js function copyThemeConfig() { // Semantic looks for a hardcoded theme.config file, so use this hack. return gulp.src('./frontend/semantic/theme.config') .pipe(gulp.dest('./node_modules/semantic-ui-less')); }...

It looks like the panic-causing code can be boiled down to `

@edvinv This might solve your case (it outputs all the modules into a single file) https://github.com/ivogabe/gulp-typescript/issues/243#issuecomment-161480447

I suggest adding a `toString` method to the exported object ```js module.exports = obj = {/* exported data */}; obj.toString = function() { return obj.sources[Object.keys(obj.sources)[0]]; }; // returns the first...