If I have something like the following
"use strict";
$(document).ready(function () {
});
I get the warning
'$'is not defined
( function ( $ ) {
'use strict';
$( document ).ready( function () {
console.log( 'working!' )
})
} ( jQuery ) )