Adding javascript files (Waypoints)

Hi Julien, thanks for the reply. I did search for waypoints and I did actually comment on the post you mentioned.

I’m going to write this up as a single step by step when I’ve got it nailed!

So, back to topic, if I add:

"waypoints": {
    "main": [
      "./lib/jquery.waypoints.js",
      "./lib/shortcuts/sticky.js"
     ]
   }
}

in the overrides, the gulp fails (SyntaxError: Unexpected token). I’m assuming I have added this incorrectly. It looks like there are too many closing brackets to me?

I can make it pass if I add it like this (the bootstrap-sass reference is to show the position in the boilerplate):

"overrides": {
  "waypoints": {
     "main": [
       "./lib/jquery.waypoints.js",
       "./lib/shortcuts/sticky.js"
      ]
    },
    "bootstrap-sass": {

Is that correct?

If so, what is then supposed to happen? I assume this is supposed to add to the main.js - which is not happening…