Git Product home page Git Product logo

Comments (13)

kemitchell avatar kemitchell commented on June 25, 2024

I am also interested in adding --join functionality. Insofar as gulp-coffee is Coffee for Gulp, that seems the True and Correct approach.

As for your problem with gulp-concat, @lmartins, you can get around it by adding an intermediate gulp.dest:

gulp.task 'scripts', ->
  gulp.src PATHS.SCRIPTS
  .pipe concat 'application.coffee'
  .pipe gulp.dest '.' # Save the intermediate concatenated file
  .pipe coffee bare: true, sourceMap: true
  .pipe gulp.dest '.'

You will still get mappings into an intermediate source file — the big glob of all your application's Coffee, rather than individual, separate Coffee files — but at least you'll see Coffee, rather than the generated JS.

from gulp-coffee.

lmartins avatar lmartins commented on June 25, 2024

Thank your for the suggestion @kemitchell
That does help although in that case you loose the option to directly edit the source files in Chrome's developer tools, which was also a goal here.

from gulp-coffee.

yocontra avatar yocontra commented on June 25, 2024

@terinjokes is working on this

from gulp-coffee.

terinjokes avatar terinjokes commented on June 25, 2024

Indeed, I'm working on this and guidelines for plugin creators. Should be done in the next day or so.

from gulp-coffee.

kemitchell avatar kemitchell commented on June 25, 2024

🍺 on me when you push, @terinjokes. Interested to see how you square the circle in guidelines, too. It does still say "don't join files, use gulp-concat for that", right?

from gulp-coffee.

tijhaart avatar tijhaart commented on June 25, 2024

+1

from gulp-coffee.

macgyver avatar macgyver commented on June 25, 2024

+1 🍺

from gulp-coffee.

mikeric avatar mikeric commented on June 25, 2024

+1

from gulp-coffee.

yocontra avatar yocontra commented on June 25, 2024

gulp-concat and gulp-coffee both work with gulp-sourcemaps now

from gulp-coffee.

dgtlmonk avatar dgtlmonk commented on June 25, 2024

+1

from gulp-coffee.

mck- avatar mck- commented on June 25, 2024

I'm using it as follows:

gulp.task 'scripts', ->
  gulp.src PATHS.SCRIPTS
    .pipe plgn.sourcemaps.init()
    .pipe plgn.coffee()
    .pipe plgn.sourcemaps.write()
    .pipe plgn.concat 'app.js'

but it only shows a single .coffee file in the Dev Tools..

I'm using "gulp-coffee": "^2.2.0", "gulp-concat": "^2.4.0", "gulp-sourcemaps": "^1.1.4"

from gulp-coffee.

yocontra avatar yocontra commented on June 25, 2024

concat also needs to be included in the sourcemap block. all transformations need to be tracked otherwise you are only getting a partial result

gulp.task 'scripts', ->
  gulp.src PATHS.SCRIPTS
    .pipe plgn.sourcemaps.init()
    .pipe plgn.coffee()
    .pipe plgn.concat 'app.js'
    .pipe plgn.sourcemaps.write()

from gulp-coffee.

mck- avatar mck- commented on June 25, 2024

Thank you – that worked!

from gulp-coffee.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.